We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1088c6 commit 267934bCopy full SHA for 267934b
parser/src/lexer.rs
@@ -688,7 +688,9 @@ where
688
689
match self.chr0 {
690
Some('0'..='9') => return Some(self.lex_number()),
691
- Some('_') | Some('a'..='z') | Some('A'..='Z') => { return Some(self.lex_identifier()); }
+ Some('_') | Some('a'..='z') | Some('A'..='Z') => {
692
+ return Some(self.lex_identifier());
693
+ }
694
Some('#') => {
695
self.lex_comment();
696
continue;
0 commit comments