103 lines
4 KiB
C
103 lines
4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_93.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_s465(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_word, lexer, s);
|
|
if (lex_normal_map465(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
|
|
return (lex_advance(465, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(381, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(413, lexer, s));
|
|
if ((!s->eof && set_contains(sym_word_character_set_1(), \
|
|
9, s->lookahead)))
|
|
return (lex_advance(497, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s466(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_word, lexer, s);
|
|
if (lex_normal_map466(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
|
|
return (lex_advance(466, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(381, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(413, lexer, s));
|
|
if ((!s->eof && set_contains(sym_word_character_set_1(), \
|
|
9, s->lookahead)))
|
|
return (lex_advance(497, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s467(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_word, lexer, s);
|
|
if (lex_normal_map467(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
|
|
return (lex_advance(467, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(381, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(413, lexer, s));
|
|
if ((!s->eof && set_contains(sym_word_character_set_1(), \
|
|
9, s->lookahead)))
|
|
return (lex_advance(497, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s468(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_word, lexer, s);
|
|
if (lex_normal_map468(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
|
|
return (lex_advance(468, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(380, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '\t' && \
|
|
s->lookahead < '\r') && (s->lookahead > ' ' && \
|
|
s->lookahead < '+') && (s->lookahead > '/' && s->lookahead \
|
|
< '@') && (s->lookahead > '^' && s->lookahead < '`') && \
|
|
(s->lookahead > '{' && s->lookahead < '~')))
|
|
return (lex_advance(497, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s469(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_word, lexer, s);
|
|
if (lex_normal_map469(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead >= 0x0b && s->lookahead <= '\r'))
|
|
return (lex_advance(469, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(381, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(413, lexer, s));
|
|
if ((!s->eof && set_contains(sym_word_character_set_1(), \
|
|
9, s->lookahead)))
|
|
return (lex_advance(497, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|