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,50 +14,67 @@
bool lex_keywords_s0(t_lexer *lexer, t_lexer_state *s)
{
if (lex_keywords_s0_bis(lexer, s))
return (true);
if (s->lookahead == '\\')
return (lex_skip(1, lexer, s));
if (s->lookahead == 'c')
return (lex_advance(2, lexer, s));
if (s->lookahead == 'd')
return (lex_advance(3, lexer, s));
if (s->lookahead == 'e')
return (lex_advance(4, lexer, s));
if (s->lookahead == 'f')
return (lex_advance(5, lexer, s));
if (s->lookahead == 'i')
return (lex_advance(14, lexer, s));
if (s->lookahead == 'k')
return (lex_advance(15, lexer, s));
return (lex_advance(6, lexer, s));
if (s->lookahead == 'l')
return (lex_advance(16, lexer, s));
return (lex_advance(7, lexer, s));
if (s->lookahead == 'r')
return (lex_advance(17, lexer, s));
return (lex_advance(8, lexer, s));
if (s->lookahead == 's')
return (lex_advance(18, lexer, s));
return (lex_advance(9, lexer, s));
if (s->lookahead == 't')
return (lex_advance(19, lexer, s));
return (lex_advance(10, lexer, s));
if (s->lookahead == 'u')
return (lex_advance(20, lexer, s));
return (lex_advance(11, lexer, s));
if (s->lookahead == 'w')
return (lex_advance(21, lexer, s));
return (lex_advance(12, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
s->lookahead == ' '))
return (lex_skip(22, lexer, s));
return (lex_skip(0, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s1(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_A, lexer, s);
if (s->lookahead == '\r')
return (lex_skip(13, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
s->lookahead == ' '))
return (lex_skip(0, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s2(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_E, lexer, s);
if (s->lookahead == 'a')
return (lex_advance(14, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s3(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_K, lexer, s);
if (s->lookahead == 'e')
return (lex_advance(15, lexer, s));
if (s->lookahead == 'o')
return (lex_advance(16, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_keywords_s4(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(anon_sym_L, lexer, s);
if (s->lookahead == 'l')
return (lex_advance(17, lexer, s));
if (s->lookahead == 'x')
return (lex_advance(18, lexer, s));
return (lex_end_state(lexer, s));
}