WIP
This commit is contained in:
parent
54cefca53f
commit
019d25174c
24 changed files with 388 additions and 363 deletions
26
parser/includes/types/types_scanner_ctx.h
Normal file
26
parser/includes/types/types_scanner_ctx.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* types_scanner_ctx.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/30 13:41:02 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/04/30 13:41:29 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPES_SCANNER_CTX_H
|
||||
#define TYPES_SCANNER_CTX_H
|
||||
|
||||
#include "me/types.h"
|
||||
|
||||
typedef struct s_scanner_ctx
|
||||
{
|
||||
t_u8 last_glob_paren_depth;
|
||||
bool ext_was_in_double_quote;
|
||||
bool ext_saw_outside_quote;
|
||||
// Array(t_heredoc) heredocs;
|
||||
} t_scanner_ctx;
|
||||
|
||||
#endif /* TYPES_SCANNER_CTX_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue