Updated parser

This commit is contained in:
Maix0 2024-06-30 00:32:57 +02:00
parent 66a0625382
commit bdc062b33a
1248 changed files with 93128 additions and 102788 deletions

View file

@ -20,7 +20,9 @@ bool lex_normal_s490(t_lexer *lexer, t_lexer_state *s)
if (s->lookahead == '#')
return (lex_advance(529, lexer, s));
if (s->lookahead == '\\')
return (lex_advance(152, lexer, s));
return (lex_advance(164, lexer, s));
if (s->lookahead == 'e')
return (lex_advance(527, lexer, s));
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
return (lex_advance(490, lexer, s));
if ((s->lookahead >= '0' && s->lookahead <= '9'))