Norm: Parser static now at the norm

This commit is contained in:
Maieul BOYER 2024-06-10 15:36:38 +02:00
parent 5759396eb2
commit c24766ee47
No known key found for this signature in database
25 changed files with 116 additions and 69 deletions

View file

@ -16,7 +16,7 @@
t_alias_sequences_array *create_alias_sequences(void)
{
static t_alias_sequences_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_external_scanner_states_array *create_external_scanner_states(void)
{
static t_external_scanner_states_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_external_scanner_symbol_map_array *create_external_scanner_symbol_map(void)
{
static t_external_scanner_symbol_map_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_field_map_entries_array *create_field_map_entries(void)
{
static t_field_map_entries_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_field_map_slices_array *create_field_map_slices(void)
{
static t_field_map_slices_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_field_names_array *create_field_names(void)
{
static t_field_names_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_lex_keywords_array *create_lex_keywords(void)
{
static t_lex_keywords_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_lex_modes_array *create_lex_modes(void)
{
static t_lex_modes_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_lex_normal_array *create_lex_normal(void)
{
static t_lex_normal_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_non_terminal_alias_map_array *create_non_terminal_alias_map(void)
{
static t_non_terminal_alias_map_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -17,7 +17,7 @@
t_parse_actions_entries_array *create_parse_actions_entries(void)
{
static t_parse_actions_entries_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_parse_table_array *create_parse_table(void)
{
static t_parse_table_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_primary_state_ids_array *create_primary_state_ids(void)
{
static t_primary_state_ids_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_small_parse_table_array *create_small_parse_table(void)
{
static t_small_parse_table_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_small_parse_table_map_array *create_small_parse_table_map(void)
{
static t_small_parse_table_map_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_symbols_metadata_array *create_symbols_metadata(void)
{
static t_symbols_metadata_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_symbols_names_array *create_symbols_names(void)
{
static t_symbols_names_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{

View file

@ -16,7 +16,7 @@
t_unique_symbols_map_array *create_unique_symbols_map(void)
{
static t_unique_symbols_map_array table = {};
static bool init = false;
static bool init = false;
if (!init)
{