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,36 +14,44 @@
bool lex_normal_s295(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_AMP_GT, lexer, s);
lex_accept_token(anon_sym_GT, lexer, s);
if (s->lookahead == '&')
return (lex_advance(302, lexer, s));
if (s->lookahead == '>')
return (lex_advance(296, lexer, s));
return (lex_advance(297, lexer, s));
if (s->lookahead == '|')
return (lex_advance(303, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s296(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_AMP_GT_GT, lexer, s);
lex_accept_token(anon_sym_GT, lexer, s);
if (s->lookahead == '=')
return (lex_advance(363, lexer, s));
if (s->lookahead == '>')
return (lex_advance(298, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s297(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_LT_AMP, lexer, s);
if (s->lookahead == '-')
return (lex_advance(300, lexer, s));
lex_accept_token(anon_sym_GT_GT, lexer, s);
return (lex_end_state(lexer, s));
}
bool lex_normal_s298(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_GT_AMP, lexer, s);
if (s->lookahead == '-')
return (lex_advance(301, lexer, s));
lex_accept_token(anon_sym_GT_GT, lexer, s);
if (s->lookahead == '=')
return (lex_advance(349, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s299(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_GT_PIPE, lexer, s);
lex_accept_token(anon_sym_AMP_GT, lexer, s);
if (s->lookahead == '>')
return (lex_advance(300, lexer, s));
return (lex_end_state(lexer, s));
}