101 lines
3.8 KiB
C
101 lines
3.8 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_80.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_s400(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_string_content, lexer, s);
|
|
if (lex_normal_map400(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead == '\n' || s->lookahead == '\r'))
|
|
return (lex_skip(197, lexer, s));
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
|
|
s->lookahead == ' '))
|
|
return (lex_advance(400, lexer, s));
|
|
if (((s->lookahead >= '1' && s->lookahead <= '9') || \
|
|
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(445, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '_' && \
|
|
s->lookahead < 'z')))
|
|
return (lex_advance(403, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s401(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_string_content, lexer, s);
|
|
if (lex_normal_map401(lexer, s))
|
|
return (true);
|
|
if ((s->lookahead == '\n' || s->lookahead == '\r'))
|
|
return (lex_skip(201, lexer, s));
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
|
|
s->lookahead == ' '))
|
|
return (lex_advance(401, lexer, s));
|
|
if (((s->lookahead >= '1' && s->lookahead <= '9') || \
|
|
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(445, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > ' ' && \
|
|
s->lookahead < '$') && (s->lookahead > '_' && s->lookahead \
|
|
< 'z')))
|
|
return (lex_advance(403, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s402(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_string_content, lexer, s);
|
|
if (s->lookahead == '"')
|
|
return (lex_advance(395, lexer, s));
|
|
if (s->lookahead == '#')
|
|
return (lex_advance(405, lexer, s));
|
|
if (s->lookahead == '$')
|
|
return (lex_advance(393, lexer, s));
|
|
if (s->lookahead == '\\')
|
|
return (lex_advance(135, lexer, s));
|
|
if (s->lookahead == '`')
|
|
return (lex_advance(430, lexer, s));
|
|
if ((s->lookahead == '\n' || s->lookahead == '\r'))
|
|
return (lex_skip(214, lexer, s));
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
|
|
s->lookahead == ' '))
|
|
return (lex_advance(402, lexer, s));
|
|
if (s->lookahead != 0)
|
|
return (lex_advance(403, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s403(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_string_content, lexer, s);
|
|
if (s->lookahead == '\\')
|
|
return (lex_advance(130, lexer, s));
|
|
if ((s->lookahead != 0 && s->lookahead != '\n' && \
|
|
s->lookahead != '\r' && s->lookahead != '"' && \
|
|
s->lookahead != '$' && s->lookahead != '`'))
|
|
return (lex_advance(403, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s404(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
lex_accept_token(sym_string_content, lexer, s);
|
|
if (s->lookahead == '\\')
|
|
return (lex_advance(130, lexer, s));
|
|
if ((s->lookahead != 0 && s->lookahead != '\r' && \
|
|
s->lookahead != '"' && s->lookahead != '$' && s->lookahead \
|
|
!= '`'))
|
|
return (lex_advance(403, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|