Started working on ast

This commit is contained in:
Maieul BOYER 2024-06-11 16:08:12 +02:00
parent 9aee1f2272
commit 1d4dc219db
No known key found for this signature in database
1344 changed files with 118659 additions and 107610 deletions

View file

@ -14,39 +14,38 @@
bool lex_normal_s225(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'e')
return (lex_advance(261, lexer, s));
if (s->lookahead == '>')
return (lex_advance(299, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s226(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'f')
return (lex_advance(259, lexer, s));
if (s->lookahead == '`')
return (lex_advance(391, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
s->lookahead == ' '))
return (lex_advance(226, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s227(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'i')
return (lex_advance(257, lexer, s));
if (s->lookahead == 'a')
return (lex_advance(228, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s228(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'i')
return (lex_advance(226, lexer, s));
if (s->lookahead == 's')
return (lex_advance(225, lexer, s));
if (s->lookahead == 'c')
return (lex_advance(267, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s229(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'l')
return (lex_advance(228, lexer, s));
if (s->lookahead == 's')
return (lex_advance(223, lexer, s));
if (s->lookahead == 'e')
return (lex_advance(265, lexer, s));
return (lex_end_state(lexer, s));
}