| Index: src/lexer/lexer.re
|
| diff --git a/src/lexer/lexer.re b/src/lexer/lexer.re
|
| index da431c554e447170b3027cf8ed8f754b356c0474..6cdeca76ebab04660471b299b042b54510a5e527 100644
|
| --- a/src/lexer/lexer.re
|
| +++ b/src/lexer/lexer.re
|
| @@ -169,8 +169,8 @@ public:
|
| any = [\000-\377];
|
| whitespace_char = [ \t\v\f\r];
|
| whitespace = whitespace_char+;
|
| - identifier_start_ = [$_\\a-zA-z];
|
| - identifier_char = [$_\\a-zA-z0-9];
|
| + identifier_start_ = [$_\\a-zA-Z];
|
| + identifier_char = [$_\\a-zA-Z0-9];
|
| line_terminator = [\n\r]+;
|
| digit = [0-9];
|
| hex_digit = [0-9a-fA-F];
|
|
|