rust-analyzer/crates/parser/src
Yuri Astrakhan d3dbf9c194 Moar linting: needless_borrow, let_unit_value, ...
* There are a few needless borrows that don't seem to be needed. I even did a quick assembly comparison and posted a q to stackoveflow on it. See [here](https://stackoverflow.com/questions/74910196/advantages-of-pass-by-ref-val-with-impl-intoiteratoritem-impl-asrefstr)
* removed several `let _ = ...` when they don't look necessary (even a few ones that were not suggested by clippy (?))
* there were a few `then(|| ctor{})` that clippy suggested to replace with `then_some(ctor{})` -- seems reasonable?
* some unneeded assignment+return - keep the code a bit leaner
* a few `writeln!` instead of `write!`, or even consolidate write!
* a nice optimization to use `ch.is_ascii_digit` instead of `ch.is_digit(10)`
2022-12-25 05:07:47 -05:00
..
grammar docs: update the comment and add a test to half_open_range_pat 2022-12-16 10:44:25 +08:00
syntax_kind regenerate files with new syntax 2022-08-07 17:38:20 +05:30
tests Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
event.rs internal: rename 2021-12-25 22:02:26 +03:00
grammar.rs Moar linting: needless_borrow, let_unit_value, ... 2022-12-25 05:07:47 -05:00
input.rs internal: rename 2021-12-25 22:02:26 +03:00
lexed_str.rs Remove non-needed clones 2022-12-23 02:20:03 -05:00
lib.rs Run cargo fix --edition-idioms 2022-07-20 15:02:08 +02:00
output.rs internal: add tests for extra parser entry points 2021-12-29 18:28:11 +03:00
parser.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
shortcuts.rs Moar linting: needless_borrow, let_unit_value, ... 2022-12-25 05:07:47 -05:00
syntax_kind.rs minor: modernize 2021-09-06 18:54:16 +03:00
tests.rs Moar linting: needless_borrow, let_unit_value, ... 2022-12-25 05:07:47 -05:00
token_set.rs Add semicolons for consistency 2021-10-03 23:39:43 +11:00