Removed more files
This commit is contained in:
parent
f8fca53ae6
commit
1b2f2d6d1b
130 changed files with 8363 additions and 12489 deletions
184
parser/static/symbols_names/symbols_names.c
Normal file
184
parser/static/symbols_names/symbols_names.c
Normal file
|
|
@ -0,0 +1,184 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* symbols_names.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 "../types/type_symbols_names.h"
|
||||
#include "../headers/symbols.h"
|
||||
#include "../headers/external_scanner_symbol_identifiers.h"
|
||||
#include "../headers/field_identifiers.h"
|
||||
|
||||
#include "../headers/constants.h"
|
||||
|
||||
static const \
|
||||
t_symbols_names_array g_t_symbols_names_array = {.a = {
|
||||
[ts_builtin_sym_end] = "end",
|
||||
[sym_word] = "word",
|
||||
[anon_sym_for] = "for",
|
||||
[anon_sym_in] = "in",
|
||||
[anon_sym_while] = "while",
|
||||
[anon_sym_until] = "until",
|
||||
[anon_sym_do] = "do",
|
||||
[anon_sym_done] = "done",
|
||||
[anon_sym_if] = "if",
|
||||
[anon_sym_then] = "then",
|
||||
[anon_sym_fi] = "fi",
|
||||
[anon_sym_elif] = "elif",
|
||||
[anon_sym_else] = "else",
|
||||
[anon_sym_case] = "case",
|
||||
[anon_sym_esac] = "esac",
|
||||
[anon_sym_LPAREN] = "(",
|
||||
[anon_sym_PIPE] = "|",
|
||||
[anon_sym_RPAREN] = ")",
|
||||
[anon_sym_LF] = "\\n",
|
||||
[anon_sym_SEMI_SEMI] = ";;",
|
||||
[anon_sym_LBRACE] = "{",
|
||||
[anon_sym_RBRACE] = "}",
|
||||
[anon_sym_AMP_AMP] = "operator",
|
||||
[anon_sym_PIPE_PIPE] = "operator",
|
||||
[anon_sym_BANG] = "!",
|
||||
[anon_sym_EQ] = "=",
|
||||
[anon_sym_LT] = "operator",
|
||||
[anon_sym_GT] = "operator",
|
||||
[anon_sym_GT_GT] = "operator",
|
||||
[anon_sym_LT_LT] = "operator",
|
||||
[aux_sym_heredoc_redirect_token1] = "heredoc_redirect_token1",
|
||||
[anon_sym_DOLLAR_LPAREN_LPAREN] = "$((",
|
||||
[anon_sym_RPAREN_RPAREN] = "))",
|
||||
[anon_sym_PLUS] = "operator",
|
||||
[anon_sym_DASH] = "operator",
|
||||
[anon_sym_STAR] = "operator",
|
||||
[anon_sym_SLASH] = "operator",
|
||||
[anon_sym_PERCENT] = "operator",
|
||||
[anon_sym_QMARK] = "\\\?",
|
||||
[anon_sym_COLON] = ":",
|
||||
[anon_sym_DASH2] = "operator",
|
||||
[anon_sym_PLUS2] = "operator",
|
||||
[anon_sym_PLUS_PLUS] = "operator",
|
||||
[anon_sym_DASH_DASH] = "operator",
|
||||
[aux_sym_concatenation_token1] = "``",
|
||||
[anon_sym_DOLLAR] = "$",
|
||||
[anon_sym_DQUOTE] = "\\\"",
|
||||
[sym_string_content] = "string_content",
|
||||
[sym_raw_string] = "raw_string",
|
||||
[sym_number] = "number",
|
||||
[anon_sym_POUND] = "operator",
|
||||
[anon_sym_DOLLAR_LBRACE] = "${",
|
||||
[anon_sym_COLON_DASH] = "operator",
|
||||
[anon_sym_DASH3] = "operator",
|
||||
[anon_sym_COLON_EQ] = "operator",
|
||||
[anon_sym_EQ2] = "operator",
|
||||
[anon_sym_COLON_QMARK] = "operator",
|
||||
[anon_sym_QMARK2] = "operator",
|
||||
[anon_sym_COLON_PLUS] = "operator",
|
||||
[anon_sym_PLUS3] = "operator",
|
||||
[anon_sym_PERCENT_PERCENT] = "operator",
|
||||
[aux_sym__expansion_regex_token1] = "regex",
|
||||
[anon_sym_DOLLAR_LPAREN] = "$(",
|
||||
[anon_sym_BQUOTE] = "`",
|
||||
[sym_comment] = "comment",
|
||||
[sym__comment_word] = "word",
|
||||
[aux_sym__simple_variable_name_token1] = "variable_name",
|
||||
[aux_sym__multiline_variable_name_token1] = "variable_name",
|
||||
[anon_sym_AT] = "special_variable_name",
|
||||
[anon_sym_0] = "special_variable_name",
|
||||
[aux_sym__word_no_brace_token1] = "_word_no_brace_token1",
|
||||
[anon_sym_SEMI] = ";",
|
||||
[anon_sym_LT_LT_DASH] = "<<-",
|
||||
[sym_heredoc_start] = "heredoc_start",
|
||||
[sym_simple_heredoc_body] = "heredoc_body",
|
||||
[sym__heredoc_body_beginning] = "_heredoc_body_beginning",
|
||||
[sym_heredoc_content] = "heredoc_content",
|
||||
[sym_heredoc_end] = "heredoc_end",
|
||||
[sym_file_descriptor] = "file_descriptor",
|
||||
[sym__empty_value] = "_empty_value",
|
||||
[sym__concat] = "_concat",
|
||||
[sym_variable_name] = "variable_name",
|
||||
[sym_regex] = "regex",
|
||||
[sym__expansion_word] = "word",
|
||||
[sym_extglob_pattern] = "extglob_pattern",
|
||||
[sym__bare_dollar] = "word",
|
||||
[sym__immediate_double_hash] = "operator",
|
||||
[sym___error_recovery] = "__error_recovery",
|
||||
[sym_program] = "program",
|
||||
[sym__statements] = "_statements",
|
||||
[aux_sym__terminated_statement] = "_terminated_statement",
|
||||
[sym__statement_not_pipeline] = "_statement_not_pipeline",
|
||||
[sym_redirected_statement] = "redirected_statement",
|
||||
[sym_for_statement] = "for_statement",
|
||||
[sym_while_statement] = "while_statement",
|
||||
[sym_do_group] = "do_group",
|
||||
[sym_if_statement] = "if_statement",
|
||||
[sym_elif_clause] = "elif_clause",
|
||||
[sym_else_clause] = "else_clause",
|
||||
[sym_case_statement] = "case_statement",
|
||||
[sym__case_item_last] = "case_item",
|
||||
[sym_case_item] = "case_item",
|
||||
[sym_function_definition] = "function_definition",
|
||||
[sym_compound_statement] = "compound_statement",
|
||||
[sym_subshell] = "subshell",
|
||||
[sym_pipeline] = "pipeline",
|
||||
[sym_list] = "list",
|
||||
[sym_negated_command] = "negated_command",
|
||||
[sym_command] = "command",
|
||||
[sym_command_name] = "command_name",
|
||||
[sym_variable_assignment] = "variable_assignment",
|
||||
[sym__variable_assignments] = "_variable_assignments",
|
||||
[sym_file_redirect] = "file_redirect",
|
||||
[sym_heredoc_redirect] = "heredoc_redirect",
|
||||
[sym__heredoc_pipeline] = "pipeline",
|
||||
[sym__heredoc_expression] = "_heredoc_expression",
|
||||
[aux_sym__heredoc_command] = "_heredoc_command",
|
||||
[sym__heredoc_body] = "_heredoc_body",
|
||||
[sym_heredoc_body] = "heredoc_body",
|
||||
[sym__simple_heredoc_body] = "_simple_heredoc_body",
|
||||
[sym_arithmetic_expansion] = "arithmetic_expansion",
|
||||
[sym__arithmetic_expression] = "_arithmetic_expression",
|
||||
[sym_arithmetic_literal] = "arithmetic_literal",
|
||||
[sym_arithmetic_binary_expression] = "arithmetic_binary_expression",
|
||||
[sym_arithmetic_ternary_expression] = "arithmetic_ternary_expression",
|
||||
[sym_arithmetic_unary_expression] = "arithmetic_unary_expression",
|
||||
[sym_arithmetic_postfix_expression] = "arithmetic_postfix_expression",
|
||||
[sym_arithmetic_parenthesized_expression] = "arithmetic_parenthesized_expression",
|
||||
[sym_concatenation] = "concatenation",
|
||||
[sym_string] = "string",
|
||||
[sym_simple_expansion] = "simple_expansion",
|
||||
[sym_expansion] = "expansion",
|
||||
[sym__expansion_body] = "_expansion_body",
|
||||
[sym__expansion_expression] = "_expansion_expression",
|
||||
[sym__expansion_regex] = "_expansion_regex",
|
||||
[sym__concatenation_in_expansion] = "concatenation",
|
||||
[sym_command_substitution] = "command_substitution",
|
||||
[sym__extglob_blob] = "_extglob_blob",
|
||||
[sym__word_no_brace] = "word2",
|
||||
[sym_terminator] = "terminator",
|
||||
[aux_sym__statements_repeat1] = "_statements_repeat1",
|
||||
[aux_sym_redirected_statement_repeat1] = "redirected_statement_repeat1",
|
||||
[aux_sym_redirected_statement_repeat2] = "redirected_statement_repeat2",
|
||||
[aux_sym_for_statement_repeat1] = "for_statement_repeat1",
|
||||
[aux_sym_if_statement_repeat1] = "if_statement_repeat1",
|
||||
[aux_sym_case_statement_repeat1] = "case_statement_repeat1",
|
||||
[aux_sym__case_item_last_repeat1] = "_case_item_last_repeat1",
|
||||
[aux_sym__case_item_last_repeat2] = "_case_item_last_repeat2",
|
||||
[aux_sym_pipeline_repeat1] = "pipeline_repeat1",
|
||||
[aux_sym_command_repeat1] = "command_repeat1",
|
||||
[aux_sym_command_repeat2] = "command_repeat2",
|
||||
[aux_sym__variable_assignments_repeat1] = "_variable_assignments_repeat1",
|
||||
[aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1",
|
||||
[aux_sym_concatenation_repeat1] = "concatenation_repeat1",
|
||||
[aux_sym_string_repeat1] = "string_repeat1",
|
||||
[aux_sym__expansion_regex_repeat1] = "_expansion_regex_repeat1",
|
||||
[aux_sym__concatenation_in_expansion_repeat1] = "_concatenation_in_expansion_repeat1",
|
||||
}};
|
||||
|
||||
const t_symbols_names_array *create_symbols_names(void)
|
||||
{
|
||||
return (&g_t_symbols_names_array);
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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 SYMBOLS_NAMES_H
|
||||
# define SYMBOLS_NAMES_H
|
||||
|
||||
# include "../types/type_symbols_names.h"
|
||||
# include "../headers/symbols.h"
|
||||
# include "../headers/external_scanner_symbol_identifiers.h"
|
||||
# include "../headers/field_identifiers.h"
|
||||
|
||||
# include "../headers/constants.h"
|
||||
|
||||
void symbols_names_0(t_symbols_names_array *v);
|
||||
void symbols_names_1(t_symbols_names_array *v);
|
||||
void symbols_names_2(t_symbols_names_array *v);
|
||||
void symbols_names_3(t_symbols_names_array *v);
|
||||
void symbols_names_4(t_symbols_names_array *v);
|
||||
void symbols_names_5(t_symbols_names_array *v);
|
||||
void symbols_names_6(t_symbols_names_array *v);
|
||||
void symbols_names_7(t_symbols_names_array *v);
|
||||
|
||||
#endif // SYMBOLS_NAMES_H
|
||||
|
|
@ -1,140 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* symbols_names_0.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 "./symbols_names.h"
|
||||
|
||||
void symbols_names_0(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[ts_builtin_sym_end] = "end";
|
||||
v->a[sym_word] = "word";
|
||||
v->a[anon_sym_for] = "for";
|
||||
v->a[anon_sym_in] = "in";
|
||||
v->a[anon_sym_while] = "while";
|
||||
v->a[anon_sym_until] = "until";
|
||||
v->a[anon_sym_do] = "do";
|
||||
v->a[anon_sym_done] = "done";
|
||||
v->a[anon_sym_if] = "if";
|
||||
v->a[anon_sym_then] = "then";
|
||||
v->a[anon_sym_fi] = "fi";
|
||||
v->a[anon_sym_elif] = "elif";
|
||||
v->a[anon_sym_else] = "else";
|
||||
v->a[anon_sym_case] = "case";
|
||||
v->a[anon_sym_esac] = "esac";
|
||||
v->a[anon_sym_LPAREN] = "(";
|
||||
v->a[anon_sym_PIPE] = "|";
|
||||
v->a[anon_sym_RPAREN] = ")";
|
||||
v->a[anon_sym_LF] = "\\n";
|
||||
v->a[anon_sym_SEMI_SEMI] = ";;";
|
||||
return (symbols_names_1(v));
|
||||
}
|
||||
|
||||
void symbols_names_1(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[anon_sym_LBRACE] = "{";
|
||||
v->a[anon_sym_RBRACE] = "}";
|
||||
v->a[anon_sym_AMP_AMP] = "operator";
|
||||
v->a[anon_sym_PIPE_PIPE] = "operator";
|
||||
v->a[anon_sym_BANG] = "!";
|
||||
v->a[anon_sym_EQ] = "=";
|
||||
v->a[anon_sym_LT] = "operator";
|
||||
v->a[anon_sym_GT] = "operator";
|
||||
v->a[anon_sym_GT_GT] = "operator";
|
||||
v->a[anon_sym_LT_LT] = "operator";
|
||||
v->a[aux_sym_heredoc_redirect_token1] = "heredoc_redirect_token1";
|
||||
v->a[anon_sym_DOLLAR_LPAREN_LPAREN] = "$((";
|
||||
v->a[anon_sym_RPAREN_RPAREN] = "))";
|
||||
v->a[anon_sym_PLUS] = "operator";
|
||||
v->a[anon_sym_DASH] = "operator";
|
||||
v->a[anon_sym_STAR] = "operator";
|
||||
v->a[anon_sym_SLASH] = "operator";
|
||||
v->a[anon_sym_PERCENT] = "operator";
|
||||
v->a[anon_sym_QMARK] = "\\\?";
|
||||
v->a[anon_sym_COLON] = ":";
|
||||
return (symbols_names_2(v));
|
||||
}
|
||||
|
||||
void symbols_names_2(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[anon_sym_DASH2] = "operator";
|
||||
v->a[anon_sym_PLUS2] = "operator";
|
||||
v->a[anon_sym_PLUS_PLUS] = "operator";
|
||||
v->a[anon_sym_DASH_DASH] = "operator";
|
||||
v->a[aux_sym_concatenation_token1] = "``";
|
||||
v->a[anon_sym_DOLLAR] = "$";
|
||||
v->a[anon_sym_DQUOTE] = "\\\"";
|
||||
v->a[sym_string_content] = "string_content";
|
||||
v->a[sym_raw_string] = "raw_string";
|
||||
v->a[sym_number] = "number";
|
||||
v->a[anon_sym_POUND] = "operator";
|
||||
v->a[anon_sym_DOLLAR_LBRACE] = "${";
|
||||
v->a[anon_sym_COLON_DASH] = "operator";
|
||||
v->a[anon_sym_DASH3] = "operator";
|
||||
v->a[anon_sym_COLON_EQ] = "operator";
|
||||
v->a[anon_sym_EQ2] = "operator";
|
||||
v->a[anon_sym_COLON_QMARK] = "operator";
|
||||
v->a[anon_sym_QMARK2] = "operator";
|
||||
v->a[anon_sym_COLON_PLUS] = "operator";
|
||||
v->a[anon_sym_PLUS3] = "operator";
|
||||
return (symbols_names_3(v));
|
||||
}
|
||||
|
||||
void symbols_names_3(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[anon_sym_PERCENT_PERCENT] = "operator";
|
||||
v->a[aux_sym__expansion_regex_token1] = "regex";
|
||||
v->a[anon_sym_DOLLAR_LPAREN] = "$(";
|
||||
v->a[anon_sym_BQUOTE] = "`";
|
||||
v->a[sym_comment] = "comment";
|
||||
v->a[sym__comment_word] = "word";
|
||||
v->a[aux_sym__simple_variable_name_token1] = "variable_name";
|
||||
v->a[aux_sym__multiline_variable_name_token1] = "variable_name";
|
||||
v->a[anon_sym_AT] = "special_variable_name";
|
||||
v->a[anon_sym_0] = "special_variable_name";
|
||||
v->a[aux_sym__word_no_brace_token1] = "_word_no_brace_token1";
|
||||
v->a[anon_sym_SEMI] = ";";
|
||||
v->a[anon_sym_LT_LT_DASH] = "<<-";
|
||||
v->a[sym_heredoc_start] = "heredoc_start";
|
||||
v->a[sym_simple_heredoc_body] = "heredoc_body";
|
||||
v->a[sym__heredoc_body_beginning] = "_heredoc_body_beginning";
|
||||
v->a[sym_heredoc_content] = "heredoc_content";
|
||||
v->a[sym_heredoc_end] = "heredoc_end";
|
||||
v->a[sym_file_descriptor] = "file_descriptor";
|
||||
v->a[sym__empty_value] = "_empty_value";
|
||||
return (symbols_names_4(v));
|
||||
}
|
||||
|
||||
void symbols_names_4(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[sym__concat] = "_concat";
|
||||
v->a[sym_variable_name] = "variable_name";
|
||||
v->a[sym_regex] = "regex";
|
||||
v->a[sym__expansion_word] = "word";
|
||||
v->a[sym_extglob_pattern] = "extglob_pattern";
|
||||
v->a[sym__bare_dollar] = "word";
|
||||
v->a[sym__immediate_double_hash] = "operator";
|
||||
v->a[sym___error_recovery] = "__error_recovery";
|
||||
v->a[sym_program] = "program";
|
||||
v->a[sym__statements] = "_statements";
|
||||
v->a[aux_sym__terminated_statement] = "_terminated_statement";
|
||||
v->a[sym__statement_not_pipeline] = "_statement_not_pipeline";
|
||||
v->a[sym_redirected_statement] = "redirected_statement";
|
||||
v->a[sym_for_statement] = "for_statement";
|
||||
v->a[sym_while_statement] = "while_statement";
|
||||
v->a[sym_do_group] = "do_group";
|
||||
v->a[sym_if_statement] = "if_statement";
|
||||
v->a[sym_elif_clause] = "elif_clause";
|
||||
v->a[sym_else_clause] = "else_clause";
|
||||
v->a[sym_case_statement] = "case_statement";
|
||||
return (symbols_names_5(v));
|
||||
}
|
||||
|
||||
/* EOF symbols_names_0.c */
|
||||
|
|
@ -1,91 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* symbols_names_1.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 "./symbols_names.h"
|
||||
|
||||
void symbols_names_5(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[sym__case_item_last] = "case_item";
|
||||
v->a[sym_case_item] = "case_item";
|
||||
v->a[sym_function_definition] = "function_definition";
|
||||
v->a[sym_compound_statement] = "compound_statement";
|
||||
v->a[sym_subshell] = "subshell";
|
||||
v->a[sym_pipeline] = "pipeline";
|
||||
v->a[sym_list] = "list";
|
||||
v->a[sym_negated_command] = "negated_command";
|
||||
v->a[sym_command] = "command";
|
||||
v->a[sym_command_name] = "command_name";
|
||||
v->a[sym_variable_assignment] = "variable_assignment";
|
||||
v->a[sym__variable_assignments] = "_variable_assignments";
|
||||
v->a[sym_file_redirect] = "file_redirect";
|
||||
v->a[sym_heredoc_redirect] = "heredoc_redirect";
|
||||
v->a[sym__heredoc_pipeline] = "pipeline";
|
||||
v->a[sym__heredoc_expression] = "_heredoc_expression";
|
||||
v->a[aux_sym__heredoc_command] = "_heredoc_command";
|
||||
v->a[sym__heredoc_body] = "_heredoc_body";
|
||||
v->a[sym_heredoc_body] = "heredoc_body";
|
||||
v->a[sym__simple_heredoc_body] = "_simple_heredoc_body";
|
||||
return (symbols_names_6(v));
|
||||
}
|
||||
|
||||
void symbols_names_6(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[sym_arithmetic_expansion] = "arithmetic_expansion";
|
||||
v->a[sym__arithmetic_expression] = "_arithmetic_expression";
|
||||
v->a[sym_arithmetic_literal] = "arithmetic_literal";
|
||||
v->a[sym_arithmetic_binary_expression] = "arithmetic_binary_expression";
|
||||
v->a[sym_arithmetic_ternary_expression] = "arithmetic_ternary_expression";
|
||||
v->a[sym_arithmetic_unary_expression] = "arithmetic_unary_expression";
|
||||
v->a[sym_arithmetic_postfix_expression] = "arithmetic_postfix_expression";
|
||||
v->a[sym_arithmetic_parenthesized_expression] \
|
||||
= "arithmetic_parenthesized_expression";
|
||||
v->a[sym_concatenation] = "concatenation";
|
||||
v->a[sym_string] = "string";
|
||||
v->a[sym_simple_expansion] = "simple_expansion";
|
||||
v->a[sym_expansion] = "expansion";
|
||||
v->a[sym__expansion_body] = "_expansion_body";
|
||||
v->a[sym__expansion_expression] = "_expansion_expression";
|
||||
v->a[sym__expansion_regex] = "_expansion_regex";
|
||||
v->a[sym__concatenation_in_expansion] = "concatenation";
|
||||
v->a[sym_command_substitution] = "command_substitution";
|
||||
v->a[sym__extglob_blob] = "_extglob_blob";
|
||||
v->a[sym__word_no_brace] = "word2";
|
||||
v->a[sym_terminator] = "terminator";
|
||||
return (symbols_names_7(v));
|
||||
}
|
||||
|
||||
void symbols_names_7(t_symbols_names_array *v)
|
||||
{
|
||||
v->a[aux_sym__statements_repeat1] = "_statements_repeat1";
|
||||
v->a[aux_sym_redirected_statement_repeat1] \
|
||||
= "redirected_statement_repeat1";
|
||||
v->a[aux_sym_redirected_statement_repeat2] \
|
||||
= "redirected_statement_repeat2";
|
||||
v->a[aux_sym_for_statement_repeat1] = "for_statement_repeat1";
|
||||
v->a[aux_sym_if_statement_repeat1] = "if_statement_repeat1";
|
||||
v->a[aux_sym_case_statement_repeat1] = "case_statement_repeat1";
|
||||
v->a[aux_sym__case_item_last_repeat1] = "_case_item_last_repeat1";
|
||||
v->a[aux_sym__case_item_last_repeat2] = "_case_item_last_repeat2";
|
||||
v->a[aux_sym_pipeline_repeat1] = "pipeline_repeat1";
|
||||
v->a[aux_sym_command_repeat1] = "command_repeat1";
|
||||
v->a[aux_sym_command_repeat2] = "command_repeat2";
|
||||
v->a[aux_sym__variable_assignments_repeat1] \
|
||||
= "_variable_assignments_repeat1";
|
||||
v->a[aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1";
|
||||
v->a[aux_sym_concatenation_repeat1] = "concatenation_repeat1";
|
||||
v->a[aux_sym_string_repeat1] = "string_repeat1";
|
||||
v->a[aux_sym__expansion_regex_repeat1] = "_expansion_regex_repeat1";
|
||||
v->a[aux_sym__concatenation_in_expansion_repeat1] \
|
||||
= "_concatenation_in_expansion_repeat1";
|
||||
}
|
||||
|
||||
/* EOF symbols_names_1.c */
|
||||
Loading…
Add table
Add a link
Reference in a new issue