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

104 lines
3.8 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* state_174.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_s870(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 == 'c')
return (lex_advance(660, 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(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));
}
bool lex_normal_s871(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 == 's')
return (lex_advance(869, 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(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));
}
bool lex_normal_s872(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 >= '0' && s->lookahead <= '9'))
return (lex_advance(807, lexer, s));
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
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));
}
bool lex_normal_s873(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 >= '0' && s->lookahead <= '9') || \
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
s->lookahead == '_' || (s->lookahead >= 'a' && \
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));
}
bool lex_normal_s874(t_lexer *lexer, t_lexer_state *s)
{
lex_accept_token(aux_sym__simple_variable_name_token1, \
lexer, s);
if (s->lookahead == 'a')
return (lex_advance(875, 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(879, lexer, s));
return (lex_end_state(lexer, s));
}