aboutsummaryrefslogtreecommitdiff
path: root/crates/assists/src/handlers/convert_integer_literal.rs
Commit message (Collapse)AuthorAgeFilesLines
* Change <|> to $0 - RebaseKevaundray Wedderburn2021-01-071-16/+16
|
* Minimize convert_integer_literal testsm-ysk2020-11-071-368/+2
|
* Cleanup APIAleksey Kladov2020-11-061-1/+5
|
* More orthogonal APIAleksey Kladov2020-11-061-15/+8
|
* Move int parsing to IntNumber tokenAleksey Kladov2020-11-061-1/+1
|
* Fix overflow panic in convert_interger_literal assistAleksey Kladov2020-11-031-135/+71
| | | | | | | | | This also seizes the opportunity to move integer literal parsing to the syntax crate, were it logically belongs. Note though that this is still done in an ad hoc manner -- we probably should split kitchen sink ast::Literal into a separate APIs for strings, ints, etc
* Add tests for convert integer literal assistvlakreeh2020-09-301-4/+570
|
* Add convert integer literal assistvlakreeh2020-09-291-0/+135