80 lines
3 KiB
C
80 lines
3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_175.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_s875(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(aux_sym__simple_variable_name_token1, \
|
|
lexer, s);
|
|
if (s->lookahead == 'c')
|
|
return (lex_advance(661, 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(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s876(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(aux_sym__simple_variable_name_token1, \
|
|
lexer, s);
|
|
if (s->lookahead == 'n')
|
|
return (lex_advance(550, 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(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s877(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(aux_sym__simple_variable_name_token1, \
|
|
lexer, s);
|
|
if (s->lookahead == 's')
|
|
return (lex_advance(874, 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(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s878(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(aux_sym__simple_variable_name_token1, \
|
|
lexer, s);
|
|
if ((s->lookahead >= '0' && s->lookahead <= '9'))
|
|
return (lex_advance(810, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
s->lookahead == '_' || (s->lookahead >= 'a' && \
|
|
s->lookahead <= 'z')))
|
|
return (lex_advance(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s879(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(aux_sym__simple_variable_name_token1, \
|
|
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(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|