Updated syntax with a simpler one

This commit is contained in:
Maieul BOYER 2024-06-06 19:43:58 +02:00
parent 38fa2d2e84
commit aeb576024f
No known key found for this signature in database
4465 changed files with 195554 additions and 526060 deletions

View file

@ -14,34 +14,39 @@
bool lex_keywords_s5(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_P, lexer, s);
if (s->lookahead == 'i')
return (lex_advance(19, lexer, s));
if (s->lookahead == 'o')
return (lex_advance(20, lexer, s));
if (s->lookahead == 'u')
return (lex_advance(21, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s6(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_Q, lexer, s);
if (s->lookahead == 'f')
return (lex_advance(22, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s7(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_U, lexer, s);
if (s->lookahead == 'o')
return (lex_advance(23, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s8(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == '\r')
return (lex_skip(23, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
s->lookahead == ' '))
return (lex_skip(22, lexer, s));
if (s->lookahead == 'e')
return (lex_advance(24, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s9(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_a, lexer, s);
if (s->lookahead == 'e')
return (lex_advance(25, lexer, s));
return (lex_end_state(lexer, s));
}