Merge pull request #18744 from gbbosak/master

Treat ; as a terminator rather part of a glued expression
This commit is contained in:
Lukas Wirth 2024-12-27 09:57:02 +00:00 committed by GitHub
commit a77cf8e189
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,6 +132,7 @@ impl<'a, S: Copy> TtIter<'a, S> {
}
('-' | '!' | '*' | '/' | '&' | '%' | '^' | '+' | '<' | '=' | '>' | '|', '=', _)
| ('-' | '=' | '>', '>', _)
| (_, _, Some(';'))
| ('<', '-', _)
| (':', ':', _)
| ('.', '.', _)