Skip to content

Commit

Permalink
Merge pull request #18744 from gbbosak/master
Browse files Browse the repository at this point in the history
Treat ; as a terminator rather part of a glued expression
  • Loading branch information
Veykril authored Dec 27, 2024
2 parents 352116c + 0d5b480 commit eea4a9a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tools/rust-analyzer/crates/tt/src/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ impl<'a, S: Copy> TtIter<'a, S> {
}
('-' | '!' | '*' | '/' | '&' | '%' | '^' | '+' | '<' | '=' | '>' | '|', '=', _)
| ('-' | '=' | '>', '>', _)
| (_, _, Some(';'))
| ('<', '-', _)
| (':', ':', _)
| ('.', '.', _)
Expand Down

0 comments on commit eea4a9a

Please sign in to comment.