Started from buttom go to the sky
This commit is contained in:
parent
96215449bd
commit
f811e55dea
4781 changed files with 10121 additions and 1743 deletions
27
parser/static/types/type_alias_sequences.h
Normal file
27
parser/static/types/type_alias_sequences.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_alias_sequences.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_ALIAS_SEQUENCES_H
|
||||
# define TYPE_ALIAS_SEQUENCES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_alias_sequences_array
|
||||
{
|
||||
t_symbol a[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH];
|
||||
} t_alias_sequences_array;
|
||||
|
||||
#endif // TYPE_ALIAS_SEQUENCES_H
|
||||
27
parser/static/types/type_external_scanner_states.h
Normal file
27
parser/static/types/type_external_scanner_states.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_external_scanner_states.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_EXTERNAL_SCANNER_STATES_H
|
||||
# define TYPE_EXTERNAL_SCANNER_STATES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_external_scanner_states_array
|
||||
{
|
||||
bool a[131][EXTERNAL_TOKEN_COUNT];
|
||||
} t_external_scanner_states_array;
|
||||
|
||||
#endif // TYPE_EXTERNAL_SCANNER_STATES_H
|
||||
27
parser/static/types/type_external_scanner_symbol_map.h
Normal file
27
parser/static/types/type_external_scanner_symbol_map.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_external_scanner_symbol_map.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_EXTERNAL_SCANNER_SYMBOL_MAP_H
|
||||
# define TYPE_EXTERNAL_SCANNER_SYMBOL_MAP_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_external_scanner_symbol_map_array
|
||||
{
|
||||
t_symbol a[EXTERNAL_TOKEN_COUNT];
|
||||
} t_external_scanner_symbol_map_array;
|
||||
|
||||
#endif // TYPE_EXTERNAL_SCANNER_SYMBOL_MAP_H
|
||||
27
parser/static/types/type_field_map_entries.h
Normal file
27
parser/static/types/type_field_map_entries.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_field_map_entries.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_FIELD_MAP_ENTRIES_H
|
||||
# define TYPE_FIELD_MAP_ENTRIES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_field_map_entries_array
|
||||
{
|
||||
t_field_map_entry a[287];
|
||||
} t_field_map_entries_array;
|
||||
|
||||
#endif // TYPE_FIELD_MAP_ENTRIES_H
|
||||
27
parser/static/types/type_field_map_slices.h
Normal file
27
parser/static/types/type_field_map_slices.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_field_map_slices.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_FIELD_MAP_SLICES_H
|
||||
# define TYPE_FIELD_MAP_SLICES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_field_map_slices_array
|
||||
{
|
||||
t_field_map_slice a[PRODUCTION_ID_COUNT];
|
||||
} t_field_map_slices_array;
|
||||
|
||||
#endif // TYPE_FIELD_MAP_SLICES_H
|
||||
27
parser/static/types/type_field_names.h
Normal file
27
parser/static/types/type_field_names.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_field_names.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_FIELD_NAMES_H
|
||||
# define TYPE_FIELD_NAMES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_field_names_array
|
||||
{
|
||||
const char *a[20];
|
||||
} t_field_names_array;
|
||||
|
||||
#endif // TYPE_FIELD_NAMES_H
|
||||
27
parser/static/types/type_lex_keywords.h
Normal file
27
parser/static/types/type_lex_keywords.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_lex_keywords.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_LEX_KEYWORDS_H
|
||||
# define TYPE_LEX_KEYWORDS_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_lex_keywords_array
|
||||
{
|
||||
void *a[97];
|
||||
} t_lex_keywords_array;
|
||||
|
||||
#endif // TYPE_LEX_KEYWORDS_H
|
||||
27
parser/static/types/type_lex_modes.h
Normal file
27
parser/static/types/type_lex_modes.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_lex_modes.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_LEX_MODES_H
|
||||
# define TYPE_LEX_MODES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_lex_modes_array
|
||||
{
|
||||
t_lex_modes a[STATE_COUNT];
|
||||
} t_lex_modes_array;
|
||||
|
||||
#endif // TYPE_LEX_MODES_H
|
||||
27
parser/static/types/type_lex_normal.h
Normal file
27
parser/static/types/type_lex_normal.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_lex_normal.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_LEX_NORMAL_H
|
||||
# define TYPE_LEX_NORMAL_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_lex_normal_array
|
||||
{
|
||||
void *a[959];
|
||||
} t_lex_normal_array;
|
||||
|
||||
#endif // TYPE_LEX_NORMAL_H
|
||||
27
parser/static/types/type_non_terminal_alias_map.h
Normal file
27
parser/static/types/type_non_terminal_alias_map.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_non_terminal_alias_map.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_NON_TERMINAL_ALIAS_MAP_H
|
||||
# define TYPE_NON_TERMINAL_ALIAS_MAP_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_non_terminal_alias_map_array
|
||||
{
|
||||
uint16_t a[5];
|
||||
} t_non_terminal_alias_map_array;
|
||||
|
||||
#endif // TYPE_NON_TERMINAL_ALIAS_MAP_H
|
||||
27
parser/static/types/type_parse_actions_entries.h
Normal file
27
parser/static/types/type_parse_actions_entries.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_parse_actions_entries.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_PARSE_ACTIONS_ENTRIES_H
|
||||
# define TYPE_PARSE_ACTIONS_ENTRIES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_parse_actions_entries_array
|
||||
{
|
||||
t_parse_action_entry a[16731];
|
||||
} t_parse_actions_entries_array;
|
||||
|
||||
#endif // TYPE_PARSE_ACTIONS_ENTRIES_H
|
||||
27
parser/static/types/type_parse_table.h
Normal file
27
parser/static/types/type_parse_table.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_parse_table.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_PARSE_TABLE_H
|
||||
# define TYPE_PARSE_TABLE_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_parse_table_array
|
||||
{
|
||||
uint16_t a[LARGE_STATE_COUNT][SYMBOL_COUNT];
|
||||
} t_parse_table_array;
|
||||
|
||||
#endif // TYPE_PARSE_TABLE_H
|
||||
27
parser/static/types/type_primary_state_ids.h
Normal file
27
parser/static/types/type_primary_state_ids.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_primary_state_ids.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_PRIMARY_STATE_IDS_H
|
||||
# define TYPE_PRIMARY_STATE_IDS_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_primary_state_ids_array
|
||||
{
|
||||
t_state_id a[STATE_COUNT];
|
||||
} t_primary_state_ids_array;
|
||||
|
||||
#endif // TYPE_PRIMARY_STATE_IDS_H
|
||||
27
parser/static/types/type_small_parse_table.h
Normal file
27
parser/static/types/type_small_parse_table.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_small_parse_table.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_SMALL_PARSE_TABLE_H
|
||||
# define TYPE_SMALL_PARSE_TABLE_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_small_parse_table_array
|
||||
{
|
||||
uint16_t a[324397];
|
||||
} t_small_parse_table_array;
|
||||
|
||||
#endif // TYPE_SMALL_PARSE_TABLE_H
|
||||
27
parser/static/types/type_small_parse_table_map.h
Normal file
27
parser/static/types/type_small_parse_table_map.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_small_parse_table_map.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_SMALL_PARSE_TABLE_MAP_H
|
||||
# define TYPE_SMALL_PARSE_TABLE_MAP_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_small_parse_table_map_array
|
||||
{
|
||||
uint32_t a[7143];
|
||||
} t_small_parse_table_map_array;
|
||||
|
||||
#endif // TYPE_SMALL_PARSE_TABLE_MAP_H
|
||||
27
parser/static/types/type_symbols_metadata.h
Normal file
27
parser/static/types/type_symbols_metadata.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_symbols_metadata.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_SYMBOLS_METADATA_H
|
||||
# define TYPE_SYMBOLS_METADATA_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_symbols_metadata_array
|
||||
{
|
||||
t_symbol_metadata a[280];
|
||||
} t_symbols_metadata_array;
|
||||
|
||||
#endif // TYPE_SYMBOLS_METADATA_H
|
||||
27
parser/static/types/type_symbols_names.h
Normal file
27
parser/static/types/type_symbols_names.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_symbols_names.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_SYMBOLS_NAMES_H
|
||||
# define TYPE_SYMBOLS_NAMES_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_symbols_names_array
|
||||
{
|
||||
const char *a[281];
|
||||
} t_symbols_names_array;
|
||||
|
||||
#endif // TYPE_SYMBOLS_NAMES_H
|
||||
27
parser/static/types/type_unique_symbols_map.h
Normal file
27
parser/static/types/type_unique_symbols_map.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* type_unique_symbols_map.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef TYPE_UNIQUE_SYMBOLS_MAP_H
|
||||
# define TYPE_UNIQUE_SYMBOLS_MAP_H
|
||||
|
||||
# include "../../parse_types.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
# include "../headers/constants.h"
|
||||
|
||||
typedef struct s_unique_symbols_map_array
|
||||
{
|
||||
t_symbol a[280];
|
||||
} t_unique_symbols_map_array;
|
||||
|
||||
#endif // TYPE_UNIQUE_SYMBOLS_MAP_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue