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,36 +14,37 @@
bool lex_keywords_s15(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_k, lexer, s);
if (s->lookahead == 'c')
return (lex_advance(31, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s16(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'o')
return (lex_advance(33, lexer, s));
lex_accept_token(anon_sym_do, lexer, s);
if (s->lookahead == 'n')
return (lex_advance(32, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s17(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'e')
if (s->lookahead == 'i')
return (lex_advance(33, lexer, s));
if (s->lookahead == 's')
return (lex_advance(34, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s18(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'e')
if (s->lookahead == 'p')
return (lex_advance(35, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s19(t_lexer *lexer, t_lexer_state *s)
{
if (s->lookahead == 'h')
return (lex_advance(36, lexer, s));
if (s->lookahead == 'y')
return (lex_advance(37, lexer, s));
lex_accept_token(anon_sym_fi, lexer, s);
return (lex_end_state(lexer, s));
}