changed grammar

This commit is contained in:
Maieul BOYER 2024-07-01 18:36:14 +02:00
parent 0b5b5e4d7e
commit e5b22489e1
No known key found for this signature in database
1219 changed files with 96283 additions and 113028 deletions

View file

@ -15,82 +15,61 @@
bool lex_normal_s370(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(sym_string_content, lexer, s);
if (s->lookahead == '\n')
return (lex_advance(376, lexer, s));
if (s->lookahead == '\\')
return (lex_advance(405, lexer, s));
if ((s->lookahead != 0 && s->lookahead != '\r' && \
s->lookahead != '"' && s->lookahead != '$' && s->lookahead \
!= '`'))
return (lex_advance(378, lexer, s));
return (lex_advance(397, lexer, s));
if ((s->lookahead != 0 && s->lookahead != '\n' && \
s->lookahead != '\r' && s->lookahead != '"' && \
s->lookahead != '$' && s->lookahead != '`'))
return (lex_advance(370, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s371(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(sym_string_content, lexer, s);
if (s->lookahead == '\n')
return (lex_advance(374, lexer, s));
if (s->lookahead == '\\')
return (lex_advance(120, lexer, s));
if ((s->lookahead != 0 && s->lookahead != '\r' && \
s->lookahead != '"' && s->lookahead != '$' && s->lookahead \
!= '`'))
return (lex_advance(376, lexer, s));
lex_accept_token(sym_raw_string, lexer, s);
return (lex_end_state(lexer, s));
}
bool lex_normal_s372(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(sym_string_content, lexer, s);
if (s->lookahead == '\n')
return (lex_advance(375, lexer, s));
lex_accept_token(sym_number, lexer, s);
if (s->lookahead == '\\')
return (lex_advance(120, lexer, s));
if ((s->lookahead != 0 && s->lookahead != '\r' && \
s->lookahead != '"' && s->lookahead != '$' && s->lookahead \
!= '`'))
return (lex_advance(376, lexer, s));
return (lex_advance(215, lexer, s));
if ((s->lookahead >= '0' && s->lookahead <= '9'))
return (lex_advance(372, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 10, \
s->lookahead)))
return (lex_advance(488, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s373(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(sym_string_content, lexer, s);
if (lex_normal_map373(lexer, s))
return (true);
if ((s->lookahead == '\n' || s->lookahead == '\r'))
return (lex_skip(178, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
s->lookahead == ' '))
lex_accept_token(sym_number, lexer, s);
if (s->lookahead == '\\')
return (lex_advance(16, lexer, s));
if ((s->lookahead >= '0' && s->lookahead <= '9'))
return (lex_advance(373, lexer, s));
if (((s->lookahead >= '1' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
(s->lookahead >= 'a' && s->lookahead <= 'z')))
return (lex_advance(418, lexer, s));
if ((s->lookahead != 0 && (s->lookahead > '_' && \
s->lookahead < 'z')))
return (lex_advance(376, lexer, s));
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(405, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 10, \
s->lookahead)))
return (lex_advance(488, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s374(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(sym_string_content, lexer, s);
if (lex_normal_map374(lexer, s))
return (true);
if ((s->lookahead == '\n' || s->lookahead == '\r'))
return (lex_skip(182, lexer, s));
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
s->lookahead == ' '))
lex_accept_token(sym_number, lexer, s);
if ((s->lookahead >= '0' && s->lookahead <= '9'))
return (lex_advance(374, lexer, s));
if (((s->lookahead >= '1' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
(s->lookahead >= 'a' && s->lookahead <= 'z')))
return (lex_advance(418, lexer, s));
if ((s->lookahead != 0 && (s->lookahead > ' ' && \
s->lookahead < '$') && (s->lookahead > '_' && s->lookahead \
< 'z')))
return (lex_advance(376, lexer, s));
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(410, lexer, s));
return (lex_end_state(lexer, s));
}