minishell/parser/static/lex_funcs/lex_normal/state_173.c
2024-04-28 19:59:01 +02:00

110 lines
4 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* state_173.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#include "./lex_normal_funcs.h"
bool lex_normal_s865(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == '\\')
return (lex_advance(518, lexer, s));
if (s->lookahead == 'c')
return (lex_advance(658, lexer, s));
if (((s->lookahead >= '0' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(868, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 12, \
s->lookahead)))
return (lex_advance(958, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s866(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == '\\')
return (lex_advance(518, lexer, s));
if (s->lookahead == 's')
return (lex_advance(864, lexer, s));
if (((s->lookahead >= '0' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(868, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 12, \
s->lookahead)))
return (lex_advance(958, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s867(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == '\\')
return (lex_advance(518, lexer, s));
if ((s->lookahead >= '0' && s->lookahead <= '9'))
return (lex_advance(806, lexer, s));
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(868, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 12, \
s->lookahead)))
return (lex_advance(958, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s868(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == '\\')
return (lex_advance(518, lexer, s));
if (((s->lookahead >= '0' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
s->lookahead <= 'z')))
return (lex_advance(868, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 12, \
s->lookahead)))
return (lex_advance(958, lexer, s));
return (lex_end_state(lexer, s));
}
bool lex_normal_s869(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == '\\')
return (lex_advance(17, lexer, s));
if (s->lookahead == 'a')
return (lex_advance(870, lexer, s));
if (((s->lookahead >= '0' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'b' && \
s->lookahead <= 'z')))
return (lex_advance(873, lexer, s));
if ((!s->eof && \
set_contains(sym__comment_word_character_set_1(), 12, \
s->lookahead)))
return (lex_advance(958, lexer, s));
return (lex_end_state(lexer, s));
}