We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc5346 commit 6fe2f58Copy full SHA for 6fe2f58
src/tokenize.jl
@@ -484,10 +484,10 @@ function _next_token(l::Lexer, c)
484
return lex_whitespace(l, c)
485
elseif is_identifier_start_char(c)
486
return lex_identifier(l, c)
487
- elseif c == '"'
488
- return lex_quote(l);
489
elseif isdigit(c)
490
- return lex_digit(l, K"Integer")
+ return lex_digit(l, K"Integer")
+ elseif c == '"'
+ return lex_quote(l)
491
elseif c == '+'
492
return lex_plus(l)
493
elseif c == '-'
0 commit comments