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 fd4fc11 commit 6173d66Copy full SHA for 6173d66
source/Tokenizer.ml
@@ -4,7 +4,10 @@ let dot = [%sedlex.regexp? '.']
4
let digit = [%sedlex.regexp? '0' .. '9']
5
let number = [%sedlex.regexp? Plus digit, Opt '.', Opt (Plus digit)]
6
let space = [%sedlex.regexp? Plus ('\n' | '\t' | ' ')]
7
-let identifier = [%sedlex.regexp? (alphabetic | '_'), Star (alphabetic | digit | '_')]
+
8
+let identifier =
9
+ [%sedlex.regexp? (alphabetic | '_'), Star (alphabetic | digit | '_')]
10
11
let not_double_quotes = [%sedlex.regexp? Compl '"']
12
13
type token =
0 commit comments