tree-sitter-cmake/src/parser.c

16585 lines
442 KiB
C
Raw Normal View History

2021-04-10 10:29:19 -04:00
#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 13
2021-07-01 07:36:35 -04:00
#define STATE_COUNT 685
#define LARGE_STATE_COUNT 2
2021-07-01 07:36:35 -04:00
#define SYMBOL_COUNT 77
#define ALIAS_COUNT 0
#define TOKEN_COUNT 36
#define EXTERNAL_TOKEN_COUNT 3
2021-06-06 09:44:05 -04:00
#define FIELD_COUNT 0
#define MAX_ALIAS_SEQUENCE_LENGTH 7
2021-06-06 09:44:05 -04:00
#define PRODUCTION_ID_COUNT 1
2021-04-10 10:29:19 -04:00
enum {
2021-06-16 15:37:14 -04:00
sym__escape_identity = 1,
anon_sym_BSLASHt = 2,
anon_sym_BSLASHr = 3,
anon_sym_BSLASHn = 4,
sym__escape_semicolon = 5,
aux_sym_variable_token1 = 6,
anon_sym_DOLLAR = 7,
anon_sym_LBRACE = 8,
anon_sym_RBRACE = 9,
anon_sym_ENV = 10,
anon_sym_CACHE = 11,
aux_sym__untrimmed_argument_token1 = 12,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN = 13,
anon_sym_RPAREN = 14,
anon_sym_DQUOTE = 15,
aux_sym_quoted_element_token1 = 16,
aux_sym_unquoted_argument_token1 = 17,
aux_sym_if_command_token1 = 18,
aux_sym_else_command_token1 = 19,
sym_if = 20,
sym_elseif = 21,
sym_else = 22,
sym_endif = 23,
sym_foreach = 24,
sym_endforeach = 25,
sym_while = 26,
sym_endwhile = 27,
sym_function = 28,
sym_endfunction = 29,
sym_macro = 30,
sym_endmacro = 31,
sym_identifier = 32,
sym_bracket_argument = 33,
sym_bracket_comment = 34,
sym_line_comment = 35,
sym_source_file = 36,
sym_escape_sequence = 37,
sym__escape_encoded = 38,
sym_variable = 39,
sym_variable_ref = 40,
sym_normal_var = 41,
sym_env_var = 42,
sym_cache_var = 43,
sym_argument = 44,
sym__untrimmed_argument = 45,
2021-07-01 07:36:35 -04:00
sym__paren_argument = 46,
sym_quoted_argument = 47,
sym_quoted_element = 48,
sym_unquoted_argument = 49,
sym_if_command = 50,
sym_elseif_command = 51,
sym_else_command = 52,
sym_endif_command = 53,
sym_if_condition = 54,
sym_foreach_command = 55,
sym_endforeach_command = 56,
sym_foreach_loop = 57,
sym_while_command = 58,
sym_endwhile_command = 59,
sym_while_loop = 60,
sym_function_command = 61,
sym_endfunction_command = 62,
sym_function_def = 63,
sym_macro_command = 64,
sym_endmacro_command = 65,
sym_macro_def = 66,
sym_normal_command = 67,
sym__command_invocation = 68,
sym__untrimmed_command_invocation = 69,
aux_sym_source_file_repeat1 = 70,
aux_sym_variable_repeat1 = 71,
aux_sym_quoted_element_repeat1 = 72,
aux_sym_unquoted_argument_repeat1 = 73,
aux_sym_if_command_repeat1 = 74,
aux_sym_if_command_repeat2 = 75,
aux_sym_if_condition_repeat1 = 76,
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const char * const ts_symbol_names[] = {
2021-04-10 10:29:19 -04:00
[ts_builtin_sym_end] = "end",
[sym__escape_identity] = "_escape_identity",
[anon_sym_BSLASHt] = "\\t",
[anon_sym_BSLASHr] = "\\r",
[anon_sym_BSLASHn] = "\\n",
[sym__escape_semicolon] = "_escape_semicolon",
[aux_sym_variable_token1] = "variable_token1",
[anon_sym_DOLLAR] = "$",
2021-06-16 15:37:14 -04:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_ENV] = "ENV",
[anon_sym_CACHE] = "CACHE",
[aux_sym__untrimmed_argument_token1] = "_untrimmed_argument_token1",
2021-07-01 07:36:35 -04:00
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2021-04-11 11:27:20 -04:00
[anon_sym_DQUOTE] = "\"",
[aux_sym_quoted_element_token1] = "quoted_element_token1",
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_token1] = "unquoted_argument_token1",
[aux_sym_if_command_token1] = "if_command_token1",
[aux_sym_else_command_token1] = "else_command_token1",
2021-06-17 16:32:18 -04:00
[sym_if] = "if",
[sym_elseif] = "elseif",
[sym_else] = "else",
[sym_endif] = "endif",
2021-06-16 15:37:14 -04:00
[sym_foreach] = "foreach",
[sym_endforeach] = "endforeach",
2021-06-17 16:43:12 -04:00
[sym_while] = "while",
[sym_endwhile] = "endwhile",
2021-06-17 17:06:32 -04:00
[sym_function] = "function",
[sym_endfunction] = "endfunction",
[sym_macro] = "macro",
[sym_endmacro] = "endmacro",
2021-06-16 15:37:14 -04:00
[sym_identifier] = "identifier",
[sym_bracket_argument] = "bracket_argument",
[sym_bracket_comment] = "bracket_comment",
[sym_line_comment] = "line_comment",
2021-04-10 10:29:19 -04:00
[sym_source_file] = "source_file",
[sym_escape_sequence] = "escape_sequence",
[sym__escape_encoded] = "_escape_encoded",
[sym_variable] = "variable",
[sym_variable_ref] = "variable_ref",
[sym_normal_var] = "normal_var",
[sym_env_var] = "env_var",
[sym_cache_var] = "cache_var",
2021-04-10 15:55:47 -04:00
[sym_argument] = "argument",
[sym__untrimmed_argument] = "_untrimmed_argument",
2021-07-01 07:36:35 -04:00
[sym__paren_argument] = "_paren_argument",
2021-04-11 11:27:20 -04:00
[sym_quoted_argument] = "quoted_argument",
[sym_quoted_element] = "quoted_element",
2021-04-11 09:48:26 -04:00
[sym_unquoted_argument] = "unquoted_argument",
2021-06-17 16:32:18 -04:00
[sym_if_command] = "if_command",
[sym_elseif_command] = "elseif_command",
[sym_else_command] = "else_command",
[sym_endif_command] = "endif_command",
2021-06-17 16:43:12 -04:00
[sym_if_condition] = "if_condition",
2021-06-07 17:02:35 -04:00
[sym_foreach_command] = "foreach_command",
[sym_endforeach_command] = "endforeach_command",
2021-06-17 16:32:18 -04:00
[sym_foreach_loop] = "foreach_loop",
2021-06-17 16:43:12 -04:00
[sym_while_command] = "while_command",
[sym_endwhile_command] = "endwhile_command",
[sym_while_loop] = "while_loop",
2021-06-17 17:06:32 -04:00
[sym_function_command] = "function_command",
[sym_endfunction_command] = "endfunction_command",
[sym_function_def] = "function_def",
[sym_macro_command] = "macro_command",
[sym_endmacro_command] = "endmacro_command",
[sym_macro_def] = "macro_def",
2021-06-17 16:43:12 -04:00
[sym_normal_command] = "normal_command",
2021-06-07 18:02:13 -04:00
[sym__command_invocation] = "_command_invocation",
[sym__untrimmed_command_invocation] = "_untrimmed_command_invocation",
2021-04-10 10:29:19 -04:00
[aux_sym_source_file_repeat1] = "source_file_repeat1",
[aux_sym_variable_repeat1] = "variable_repeat1",
[aux_sym_quoted_element_repeat1] = "quoted_element_repeat1",
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_repeat1] = "unquoted_argument_repeat1",
2021-06-17 16:32:18 -04:00
[aux_sym_if_command_repeat1] = "if_command_repeat1",
[aux_sym_if_command_repeat2] = "if_command_repeat2",
2021-06-17 16:43:12 -04:00
[aux_sym_if_condition_repeat1] = "if_condition_repeat1",
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const TSSymbol ts_symbol_map[] = {
2021-04-10 10:29:19 -04:00
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym__escape_identity] = sym__escape_identity,
[anon_sym_BSLASHt] = anon_sym_BSLASHt,
[anon_sym_BSLASHr] = anon_sym_BSLASHr,
[anon_sym_BSLASHn] = anon_sym_BSLASHn,
[sym__escape_semicolon] = sym__escape_semicolon,
[aux_sym_variable_token1] = aux_sym_variable_token1,
[anon_sym_DOLLAR] = anon_sym_DOLLAR,
2021-06-16 15:37:14 -04:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_ENV] = anon_sym_ENV,
[anon_sym_CACHE] = anon_sym_CACHE,
[aux_sym__untrimmed_argument_token1] = aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2021-04-11 11:27:20 -04:00
[anon_sym_DQUOTE] = anon_sym_DQUOTE,
[aux_sym_quoted_element_token1] = aux_sym_quoted_element_token1,
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_token1] = aux_sym_unquoted_argument_token1,
[aux_sym_if_command_token1] = aux_sym_if_command_token1,
[aux_sym_else_command_token1] = aux_sym_else_command_token1,
2021-06-17 16:32:18 -04:00
[sym_if] = sym_if,
[sym_elseif] = sym_elseif,
[sym_else] = sym_else,
[sym_endif] = sym_endif,
2021-06-16 15:37:14 -04:00
[sym_foreach] = sym_foreach,
[sym_endforeach] = sym_endforeach,
2021-06-17 16:43:12 -04:00
[sym_while] = sym_while,
[sym_endwhile] = sym_endwhile,
2021-06-17 17:06:32 -04:00
[sym_function] = sym_function,
[sym_endfunction] = sym_endfunction,
[sym_macro] = sym_macro,
[sym_endmacro] = sym_endmacro,
2021-06-16 15:37:14 -04:00
[sym_identifier] = sym_identifier,
[sym_bracket_argument] = sym_bracket_argument,
[sym_bracket_comment] = sym_bracket_comment,
[sym_line_comment] = sym_line_comment,
2021-04-10 10:29:19 -04:00
[sym_source_file] = sym_source_file,
[sym_escape_sequence] = sym_escape_sequence,
[sym__escape_encoded] = sym__escape_encoded,
[sym_variable] = sym_variable,
[sym_variable_ref] = sym_variable_ref,
[sym_normal_var] = sym_normal_var,
[sym_env_var] = sym_env_var,
[sym_cache_var] = sym_cache_var,
2021-04-10 15:55:47 -04:00
[sym_argument] = sym_argument,
[sym__untrimmed_argument] = sym__untrimmed_argument,
2021-07-01 07:36:35 -04:00
[sym__paren_argument] = sym__paren_argument,
2021-04-11 11:27:20 -04:00
[sym_quoted_argument] = sym_quoted_argument,
[sym_quoted_element] = sym_quoted_element,
2021-04-11 09:48:26 -04:00
[sym_unquoted_argument] = sym_unquoted_argument,
2021-06-17 16:32:18 -04:00
[sym_if_command] = sym_if_command,
[sym_elseif_command] = sym_elseif_command,
[sym_else_command] = sym_else_command,
[sym_endif_command] = sym_endif_command,
2021-06-17 16:43:12 -04:00
[sym_if_condition] = sym_if_condition,
2021-06-07 17:02:35 -04:00
[sym_foreach_command] = sym_foreach_command,
[sym_endforeach_command] = sym_endforeach_command,
2021-06-17 16:32:18 -04:00
[sym_foreach_loop] = sym_foreach_loop,
2021-06-17 16:43:12 -04:00
[sym_while_command] = sym_while_command,
[sym_endwhile_command] = sym_endwhile_command,
[sym_while_loop] = sym_while_loop,
2021-06-17 17:06:32 -04:00
[sym_function_command] = sym_function_command,
[sym_endfunction_command] = sym_endfunction_command,
[sym_function_def] = sym_function_def,
[sym_macro_command] = sym_macro_command,
[sym_endmacro_command] = sym_endmacro_command,
[sym_macro_def] = sym_macro_def,
2021-06-17 16:43:12 -04:00
[sym_normal_command] = sym_normal_command,
2021-06-07 18:02:13 -04:00
[sym__command_invocation] = sym__command_invocation,
[sym__untrimmed_command_invocation] = sym__untrimmed_command_invocation,
2021-04-10 10:29:19 -04:00
[aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1,
[aux_sym_variable_repeat1] = aux_sym_variable_repeat1,
[aux_sym_quoted_element_repeat1] = aux_sym_quoted_element_repeat1,
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_repeat1] = aux_sym_unquoted_argument_repeat1,
2021-06-17 16:32:18 -04:00
[aux_sym_if_command_repeat1] = aux_sym_if_command_repeat1,
[aux_sym_if_command_repeat2] = aux_sym_if_command_repeat2,
2021-06-17 16:43:12 -04:00
[aux_sym_if_condition_repeat1] = aux_sym_if_condition_repeat1,
2021-04-10 10:29:19 -04:00
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym__escape_identity] = {
.visible = false,
.named = true,
},
[anon_sym_BSLASHt] = {
.visible = true,
.named = false,
},
[anon_sym_BSLASHr] = {
.visible = true,
.named = false,
},
[anon_sym_BSLASHn] = {
.visible = true,
.named = false,
},
[sym__escape_semicolon] = {
.visible = false,
.named = true,
},
[aux_sym_variable_token1] = {
.visible = false,
.named = false,
},
[anon_sym_DOLLAR] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
2021-06-16 15:37:14 -04:00
.visible = true,
.named = false,
},
[anon_sym_ENV] = {
.visible = true,
.named = false,
},
[anon_sym_CACHE] = {
.visible = true,
.named = false,
},
[aux_sym__untrimmed_argument_token1] = {
.visible = false,
.named = false,
},
2021-07-01 07:36:35 -04:00
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2021-04-11 11:27:20 -04:00
[anon_sym_DQUOTE] = {
.visible = true,
.named = false,
},
[aux_sym_quoted_element_token1] = {
2021-04-11 11:27:20 -04:00
.visible = false,
.named = false,
},
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_token1] = {
.visible = false,
.named = false,
},
[aux_sym_if_command_token1] = {
.visible = false,
.named = false,
},
[aux_sym_else_command_token1] = {
.visible = false,
.named = false,
},
2021-06-17 16:32:18 -04:00
[sym_if] = {
2021-04-10 10:29:19 -04:00
.visible = true,
2021-06-17 16:32:18 -04:00
.named = true,
},
[sym_elseif] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_endif] = {
.visible = true,
.named = true,
2021-04-10 10:29:19 -04:00
},
2021-06-16 15:37:14 -04:00
[sym_foreach] = {
2021-04-10 12:12:41 -04:00
.visible = true,
.named = true,
},
2021-06-16 15:37:14 -04:00
[sym_endforeach] = {
.visible = true,
2021-04-10 10:29:19 -04:00
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_while] = {
.visible = true,
.named = true,
},
[sym_endwhile] = {
.visible = true,
.named = true,
},
2021-06-17 17:06:32 -04:00
[sym_function] = {
.visible = true,
.named = true,
},
[sym_endfunction] = {
.visible = true,
.named = true,
},
[sym_macro] = {
.visible = true,
.named = true,
},
[sym_endmacro] = {
.visible = true,
.named = true,
},
2021-06-16 15:37:14 -04:00
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym_bracket_argument] = {
.visible = true,
.named = true,
},
[sym_bracket_comment] = {
.visible = true,
.named = true,
},
[sym_line_comment] = {
.visible = true,
.named = true,
},
2021-06-16 15:37:14 -04:00
[sym_source_file] = {
.visible = true,
2021-04-10 10:29:19 -04:00
.named = true,
},
[sym_escape_sequence] = {
.visible = true,
.named = true,
},
[sym__escape_encoded] = {
.visible = false,
.named = true,
},
[sym_variable] = {
.visible = true,
.named = true,
},
[sym_variable_ref] = {
.visible = true,
.named = true,
},
[sym_normal_var] = {
.visible = true,
.named = true,
},
[sym_env_var] = {
.visible = true,
.named = true,
},
[sym_cache_var] = {
.visible = true,
.named = true,
},
2021-04-10 10:29:19 -04:00
[sym_argument] = {
.visible = true,
.named = true,
},
[sym__untrimmed_argument] = {
.visible = false,
.named = true,
},
2021-07-01 07:36:35 -04:00
[sym__paren_argument] = {
.visible = false,
.named = true,
},
2021-04-11 11:27:20 -04:00
[sym_quoted_argument] = {
.visible = true,
.named = true,
},
[sym_quoted_element] = {
.visible = true,
2021-04-11 11:27:20 -04:00
.named = true,
},
2021-04-11 09:48:26 -04:00
[sym_unquoted_argument] = {
.visible = true,
.named = true,
},
2021-06-17 16:32:18 -04:00
[sym_if_command] = {
.visible = true,
.named = true,
},
[sym_elseif_command] = {
.visible = true,
.named = true,
},
[sym_else_command] = {
.visible = true,
.named = true,
},
[sym_endif_command] = {
.visible = true,
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_if_condition] = {
.visible = true,
.named = true,
},
2021-06-07 17:02:35 -04:00
[sym_foreach_command] = {
.visible = true,
.named = true,
},
[sym_endforeach_command] = {
.visible = true,
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_foreach_loop] = {
2021-06-17 16:32:18 -04:00
.visible = true,
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_while_command] = {
2021-06-07 18:07:49 -04:00
.visible = true,
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_endwhile_command] = {
.visible = true,
.named = true,
},
[sym_while_loop] = {
.visible = true,
.named = true,
},
2021-06-17 17:06:32 -04:00
[sym_function_command] = {
.visible = true,
.named = true,
},
[sym_endfunction_command] = {
.visible = true,
.named = true,
},
[sym_function_def] = {
.visible = true,
.named = true,
},
[sym_macro_command] = {
.visible = true,
.named = true,
},
[sym_endmacro_command] = {
.visible = true,
.named = true,
},
[sym_macro_def] = {
.visible = true,
.named = true,
},
2021-06-17 16:43:12 -04:00
[sym_normal_command] = {
.visible = true,
.named = true,
},
2021-06-07 18:02:13 -04:00
[sym__command_invocation] = {
.visible = false,
2021-04-10 10:29:19 -04:00
.named = true,
},
[sym__untrimmed_command_invocation] = {
.visible = false,
.named = true,
},
2021-04-10 10:29:19 -04:00
[aux_sym_source_file_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_variable_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_quoted_element_repeat1] = {
2021-04-11 11:27:20 -04:00
.visible = false,
.named = false,
},
2021-04-11 09:48:26 -04:00
[aux_sym_unquoted_argument_repeat1] = {
2021-04-10 15:55:47 -04:00
.visible = false,
.named = false,
},
2021-06-17 16:32:18 -04:00
[aux_sym_if_command_repeat1] = {
2021-04-10 10:29:19 -04:00
.visible = false,
.named = false,
},
[aux_sym_if_command_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_if_condition_repeat1] = {
2021-06-17 17:06:32 -04:00
.visible = false,
.named = false,
},
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
2021-04-10 10:29:19 -04:00
[0] = {0},
};
2021-05-27 03:13:26 -04:00
static const uint16_t ts_non_terminal_alias_map[] = {
2021-04-10 10:29:19 -04:00
0,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2021-06-30 01:40:33 -04:00
if (eof) ADVANCE(18);
2021-07-01 07:36:35 -04:00
if (lookahead == '"') ADVANCE(33);
if (lookahead == '$') ADVANCE(25);
2021-07-01 07:36:35 -04:00
if (lookahead == '(') ADVANCE(31);
if (lookahead == ')') ADVANCE(32);
2021-06-30 01:40:33 -04:00
if (lookahead == ';') ADVANCE(23);
if (lookahead == '\\') ADVANCE(11);
2021-04-10 10:29:19 -04:00
if (lookahead == '\t' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (lookahead == '\n' ||
2021-06-30 01:40:33 -04:00
lookahead == '\r') ADVANCE(30);
if (lookahead != 0 &&
2021-07-01 07:36:35 -04:00
lookahead != '#') ADVANCE(35);
2021-04-10 10:29:19 -04:00
END_STATE();
case 1:
2021-07-01 07:36:35 -04:00
if (lookahead == '"') ADVANCE(33);
if (lookahead == '$') ADVANCE(25);
2021-07-01 07:36:35 -04:00
if (lookahead == '(') ADVANCE(31);
if (lookahead == ')') ADVANCE(32);
2021-06-30 01:40:33 -04:00
if (lookahead == ';') ADVANCE(23);
if (lookahead == '\\') ADVANCE(11);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (lookahead != 0 &&
2021-07-01 07:36:35 -04:00
lookahead != '#') ADVANCE(35);
2021-04-11 11:27:20 -04:00
END_STATE();
2021-06-17 16:43:12 -04:00
case 2:
2021-07-01 07:36:35 -04:00
if (lookahead == '"') ADVANCE(33);
if (lookahead == '$') ADVANCE(25);
2021-06-30 01:40:33 -04:00
if (lookahead == ';') ADVANCE(23);
if (lookahead == '\\') ADVANCE(11);
2021-07-01 07:36:35 -04:00
if (lookahead != 0) ADVANCE(34);
END_STATE();
2021-06-17 16:43:12 -04:00
case 3:
if (lookahead == '$') ADVANCE(25);
2021-07-01 07:36:35 -04:00
if (lookahead == '(') ADVANCE(31);
2021-06-30 01:40:33 -04:00
if (lookahead == ';') ADVANCE(23);
if (lookahead == '\\') ADVANCE(11);
if (lookahead == '}') ADVANCE(27);
if (lookahead == '\t' ||
2021-07-01 07:36:35 -04:00
lookahead == ' ') ADVANCE(36);
if (lookahead == '+' ||
('-' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2021-06-30 01:40:33 -04:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
2021-06-17 16:43:12 -04:00
END_STATE();
case 4:
2021-06-30 01:40:33 -04:00
if (lookahead == 'A') ADVANCE(6);
END_STATE();
2021-06-07 17:02:35 -04:00
case 5:
2021-06-30 01:40:33 -04:00
if (lookahead == 'C') ADVANCE(4);
if (lookahead == 'E') ADVANCE(9);
if (lookahead == '{') ADVANCE(26);
2021-06-17 16:32:18 -04:00
END_STATE();
case 6:
2021-06-30 01:40:33 -04:00
if (lookahead == 'C') ADVANCE(8);
2021-06-17 17:06:32 -04:00
END_STATE();
case 7:
2021-06-30 01:40:33 -04:00
if (lookahead == 'E') ADVANCE(29);
2021-06-06 09:44:05 -04:00
END_STATE();
case 8:
2021-06-30 01:40:33 -04:00
if (lookahead == 'H') ADVANCE(7);
END_STATE();
case 9:
2021-06-30 01:40:33 -04:00
if (lookahead == 'N') ADVANCE(10);
END_STATE();
case 10:
if (lookahead == 'V') ADVANCE(28);
2021-06-30 01:40:33 -04:00
END_STATE();
case 11:
if (lookahead == 'n') ADVANCE(22);
if (lookahead == 'r') ADVANCE(21);
if (lookahead == 't') ADVANCE(20);
if (lookahead != 0 &&
(lookahead < '0' || '9' < lookahead) &&
lookahead != ';' &&
(lookahead < 'A' || 'Z' < lookahead) &&
2021-06-30 01:40:33 -04:00
(lookahead < 'a' || 'z' < lookahead)) ADVANCE(19);
END_STATE();
2021-06-30 01:40:33 -04:00
case 12:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(86);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 13:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(93);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 14:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(94);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 15:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(95);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 16:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(96);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 17:
if (eof) ADVANCE(18);
if (lookahead == '{') ADVANCE(26);
if (lookahead == '}') ADVANCE(27);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(98);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(72);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(52);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(77);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2021-06-30 01:40:33 -04:00
lookahead == ' ') ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
2021-06-30 01:40:33 -04:00
case 18:
ACCEPT_TOKEN(ts_builtin_sym_end);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 19:
ACCEPT_TOKEN(sym__escape_identity);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 20:
ACCEPT_TOKEN(anon_sym_BSLASHt);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 21:
ACCEPT_TOKEN(anon_sym_BSLASHr);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 22:
ACCEPT_TOKEN(anon_sym_BSLASHn);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 23:
ACCEPT_TOKEN(sym__escape_semicolon);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 24:
ACCEPT_TOKEN(aux_sym_variable_token1);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 25:
ACCEPT_TOKEN(anon_sym_DOLLAR);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 26:
ACCEPT_TOKEN(anon_sym_LBRACE);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 27:
ACCEPT_TOKEN(anon_sym_RBRACE);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 28:
ACCEPT_TOKEN(anon_sym_ENV);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 29:
ACCEPT_TOKEN(anon_sym_CACHE);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 30:
ACCEPT_TOKEN(aux_sym__untrimmed_argument_token1);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 31:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(anon_sym_LPAREN);
2021-06-06 14:38:18 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 32:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(anon_sym_RPAREN);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-30 01:40:33 -04:00
case 33:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(anon_sym_DQUOTE);
2021-06-06 14:38:18 -04:00
END_STATE();
case 34:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(aux_sym_quoted_element_token1);
2021-06-06 14:38:18 -04:00
END_STATE();
case 35:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(aux_sym_unquoted_argument_token1);
2021-06-16 15:37:14 -04:00
END_STATE();
case 36:
2021-07-01 07:36:35 -04:00
ACCEPT_TOKEN(aux_sym_if_command_token1);
END_STATE();
case 37:
ACCEPT_TOKEN(aux_sym_else_command_token1);
if (lookahead == '$') ADVANCE(25);
2021-06-30 01:40:33 -04:00
if (lookahead == ';') ADVANCE(23);
if (lookahead == '\\') ADVANCE(11);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(39);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
lookahead != '(' &&
2021-07-01 07:36:35 -04:00
lookahead != ')') ADVANCE(35);
END_STATE();
case 38:
ACCEPT_TOKEN(aux_sym_else_command_token1);
2021-07-01 07:36:35 -04:00
if (lookahead == ')') ADVANCE(32);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(39);
END_STATE();
case 39:
ACCEPT_TOKEN(aux_sym_else_command_token1);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(39);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_if);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-16 15:37:14 -04:00
END_STATE();
case 41:
ACCEPT_TOKEN(sym_elseif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-16 15:37:14 -04:00
END_STATE();
case 42:
ACCEPT_TOKEN(sym_else);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(74);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-04-10 10:29:19 -04:00
END_STATE();
case 43:
ACCEPT_TOKEN(sym_endif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-04-10 10:29:19 -04:00
END_STATE();
case 44:
ACCEPT_TOKEN(sym_foreach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-04-10 15:55:47 -04:00
END_STATE();
case 45:
ACCEPT_TOKEN(sym_endforeach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-06 14:38:18 -04:00
END_STATE();
case 46:
ACCEPT_TOKEN(sym_while);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 47:
ACCEPT_TOKEN(sym_endwhile);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_function);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 49:
ACCEPT_TOKEN(sym_endfunction);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 50:
ACCEPT_TOKEN(sym_macro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 51:
ACCEPT_TOKEN(sym_endmacro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-06 14:38:18 -04:00
END_STATE();
case 52:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(58);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 53:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(57);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-04-10 10:29:19 -04:00
END_STATE();
case 54:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(59);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-04-11 11:27:20 -04:00
END_STATE();
case 55:
ACCEPT_TOKEN(sym_identifier);
2021-06-30 01:40:33 -04:00
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(60);
if (('0' <= lookahead && lookahead <= '9') ||
2021-06-30 01:40:33 -04:00
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 56:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(109);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 57:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(78);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 58:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(105);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-06 14:38:18 -04:00
END_STATE();
case 59:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(79);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
END_STATE();
case 60:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(106);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 61:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(110);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 62:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
2021-07-01 07:36:35 -04:00
lookahead == 'd') ADVANCE(112);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 63:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
2021-07-01 07:36:35 -04:00
lookahead == 'd') ADVANCE(89);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 64:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(82);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 65:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(76);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 66:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(75);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 67:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(46);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 68:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 69:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(47);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 70:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(53);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 71:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(54);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 72:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 73:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 74:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 75:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(111);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 76:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(103);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 77:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(81);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 78:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 79:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(45);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 80:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(85);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 81:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(87);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 82:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 83:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(101);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 84:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(102);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 85:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(88);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 86:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(108);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 87:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 88:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(69);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 89:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(55);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 90:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(48);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 91:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(49);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 92:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(56);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 93:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
2021-07-01 07:36:35 -04:00
lookahead == 'n') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 94:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
2021-07-01 07:36:35 -04:00
lookahead == 'n') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 95:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(63);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 96:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(66);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 97:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 98:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(104);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(92);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 99:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(50);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 100:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(51);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 101:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(90);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 102:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(91);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 103:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(107);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 104:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(70);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 105:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(99);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 106:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(100);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 107:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(71);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 108:
ACCEPT_TOKEN(sym_identifier);
2021-06-30 01:40:33 -04:00
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(68);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 109:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(83);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 110:
ACCEPT_TOKEN(sym_identifier);
2021-06-30 01:40:33 -04:00
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(84);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 111:
ACCEPT_TOKEN(sym_identifier);
2021-06-30 01:40:33 -04:00
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(97);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 16:32:18 -04:00
END_STATE();
case 112:
2021-06-30 01:40:33 -04:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(80);
2021-06-30 01:40:33 -04:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-30 01:40:33 -04:00
END_STATE();
case 113:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(113);
2021-06-17 17:06:32 -04:00
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0, .external_lex_state = 1},
2021-06-30 01:40:33 -04:00
[1] = {.lex_state = 17, .external_lex_state = 2},
[2] = {.lex_state = 12, .external_lex_state = 2},
[3] = {.lex_state = 12, .external_lex_state = 2},
[4] = {.lex_state = 12, .external_lex_state = 2},
[5] = {.lex_state = 12, .external_lex_state = 2},
[6] = {.lex_state = 12, .external_lex_state = 2},
[7] = {.lex_state = 12, .external_lex_state = 2},
[8] = {.lex_state = 12, .external_lex_state = 2},
[9] = {.lex_state = 12, .external_lex_state = 2},
[10] = {.lex_state = 12, .external_lex_state = 2},
[11] = {.lex_state = 12, .external_lex_state = 2},
[12] = {.lex_state = 12, .external_lex_state = 2},
[13] = {.lex_state = 12, .external_lex_state = 2},
[14] = {.lex_state = 12, .external_lex_state = 2},
[15] = {.lex_state = 1, .external_lex_state = 1},
[16] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[17] = {.lex_state = 1, .external_lex_state = 1},
[18] = {.lex_state = 1, .external_lex_state = 1},
[19] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[20] = {.lex_state = 1, .external_lex_state = 1},
[21] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[22] = {.lex_state = 1, .external_lex_state = 1},
[23] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[24] = {.lex_state = 1, .external_lex_state = 1},
[25] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[26] = {.lex_state = 1, .external_lex_state = 1},
[27] = {.lex_state = 1, .external_lex_state = 1},
[28] = {.lex_state = 1, .external_lex_state = 1},
[29] = {.lex_state = 1, .external_lex_state = 1},
[30] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[31] = {.lex_state = 1, .external_lex_state = 1},
[32] = {.lex_state = 1, .external_lex_state = 1},
[33] = {.lex_state = 1, .external_lex_state = 1},
[34] = {.lex_state = 1, .external_lex_state = 1},
[35] = {.lex_state = 1, .external_lex_state = 1},
[36] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[37] = {.lex_state = 1, .external_lex_state = 1},
[38] = {.lex_state = 1, .external_lex_state = 1},
[39] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[40] = {.lex_state = 1, .external_lex_state = 1},
[41] = {.lex_state = 1, .external_lex_state = 1},
[42] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[43] = {.lex_state = 1, .external_lex_state = 1},
[44] = {.lex_state = 1, .external_lex_state = 1},
[45] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[46] = {.lex_state = 1, .external_lex_state = 1},
[47] = {.lex_state = 1, .external_lex_state = 1},
[48] = {.lex_state = 1, .external_lex_state = 1},
[49] = {.lex_state = 1, .external_lex_state = 1},
[50] = {.lex_state = 1, .external_lex_state = 1},
[51] = {.lex_state = 1, .external_lex_state = 1},
[52] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[53] = {.lex_state = 1, .external_lex_state = 1},
[54] = {.lex_state = 1, .external_lex_state = 1},
[55] = {.lex_state = 1, .external_lex_state = 1},
[56] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[57] = {.lex_state = 1, .external_lex_state = 1},
[58] = {.lex_state = 1, .external_lex_state = 1},
[59] = {.lex_state = 1, .external_lex_state = 1},
[60] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[61] = {.lex_state = 1, .external_lex_state = 1},
[62] = {.lex_state = 1, .external_lex_state = 1},
[63] = {.lex_state = 1, .external_lex_state = 1},
[64] = {.lex_state = 1, .external_lex_state = 1},
[65] = {.lex_state = 1, .external_lex_state = 1},
[66] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[67] = {.lex_state = 1, .external_lex_state = 1},
[68] = {.lex_state = 1, .external_lex_state = 1},
[69] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[70] = {.lex_state = 1, .external_lex_state = 1},
[71] = {.lex_state = 1, .external_lex_state = 1},
[72] = {.lex_state = 1, .external_lex_state = 1},
[73] = {.lex_state = 1, .external_lex_state = 1},
[74] = {.lex_state = 1, .external_lex_state = 1},
[75] = {.lex_state = 1, .external_lex_state = 1},
[76] = {.lex_state = 1, .external_lex_state = 1},
[77] = {.lex_state = 1, .external_lex_state = 1},
[78] = {.lex_state = 1, .external_lex_state = 1},
[79] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[80] = {.lex_state = 1, .external_lex_state = 1},
[81] = {.lex_state = 1, .external_lex_state = 1},
[82] = {.lex_state = 1, .external_lex_state = 1},
[83] = {.lex_state = 1, .external_lex_state = 1},
[84] = {.lex_state = 1, .external_lex_state = 1},
[85] = {.lex_state = 1, .external_lex_state = 1},
[86] = {.lex_state = 1, .external_lex_state = 1},
[87] = {.lex_state = 1, .external_lex_state = 1},
[88] = {.lex_state = 1, .external_lex_state = 1},
[89] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[90] = {.lex_state = 1, .external_lex_state = 1},
[91] = {.lex_state = 1, .external_lex_state = 1},
[92] = {.lex_state = 1, .external_lex_state = 1},
[93] = {.lex_state = 1, .external_lex_state = 1},
[94] = {.lex_state = 1, .external_lex_state = 1},
[95] = {.lex_state = 1, .external_lex_state = 1},
[96] = {.lex_state = 1, .external_lex_state = 1},
[97] = {.lex_state = 1, .external_lex_state = 1},
[98] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[99] = {.lex_state = 1, .external_lex_state = 1},
[100] = {.lex_state = 1, .external_lex_state = 1},
[101] = {.lex_state = 1, .external_lex_state = 1},
[102] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[103] = {.lex_state = 1, .external_lex_state = 1},
[104] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[105] = {.lex_state = 1, .external_lex_state = 1},
[106] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[107] = {.lex_state = 1, .external_lex_state = 1},
[108] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[109] = {.lex_state = 1, .external_lex_state = 1},
[110] = {.lex_state = 1, .external_lex_state = 1},
[111] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[112] = {.lex_state = 13, .external_lex_state = 2},
[113] = {.lex_state = 13, .external_lex_state = 2},
[114] = {.lex_state = 13, .external_lex_state = 2},
[115] = {.lex_state = 14, .external_lex_state = 2},
[116] = {.lex_state = 15, .external_lex_state = 2},
[117] = {.lex_state = 13, .external_lex_state = 2},
[118] = {.lex_state = 14, .external_lex_state = 2},
[119] = {.lex_state = 15, .external_lex_state = 2},
[120] = {.lex_state = 13, .external_lex_state = 2},
[121] = {.lex_state = 14, .external_lex_state = 2},
[122] = {.lex_state = 16, .external_lex_state = 2},
[123] = {.lex_state = 15, .external_lex_state = 2},
[124] = {.lex_state = 13, .external_lex_state = 2},
[125] = {.lex_state = 14, .external_lex_state = 2},
[126] = {.lex_state = 16, .external_lex_state = 2},
[127] = {.lex_state = 16, .external_lex_state = 2},
[128] = {.lex_state = 15, .external_lex_state = 2},
[129] = {.lex_state = 15, .external_lex_state = 2},
[130] = {.lex_state = 13, .external_lex_state = 2},
[131] = {.lex_state = 14, .external_lex_state = 2},
[132] = {.lex_state = 16, .external_lex_state = 2},
[133] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[134] = {.lex_state = 15, .external_lex_state = 2},
[135] = {.lex_state = 15, .external_lex_state = 2},
[136] = {.lex_state = 16, .external_lex_state = 2},
[137] = {.lex_state = 14, .external_lex_state = 2},
[138] = {.lex_state = 13, .external_lex_state = 2},
[139] = {.lex_state = 14, .external_lex_state = 2},
[140] = {.lex_state = 16, .external_lex_state = 2},
[141] = {.lex_state = 16, .external_lex_state = 2},
[142] = {.lex_state = 15, .external_lex_state = 2},
[143] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[144] = {.lex_state = 13, .external_lex_state = 2},
[145] = {.lex_state = 15, .external_lex_state = 2},
[146] = {.lex_state = 13, .external_lex_state = 2},
[147] = {.lex_state = 15, .external_lex_state = 2},
[148] = {.lex_state = 16, .external_lex_state = 2},
[149] = {.lex_state = 14, .external_lex_state = 2},
[150] = {.lex_state = 14, .external_lex_state = 2},
[151] = {.lex_state = 14, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[152] = {.lex_state = 13, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[153] = {.lex_state = 13, .external_lex_state = 2},
[154] = {.lex_state = 16, .external_lex_state = 2},
[155] = {.lex_state = 15, .external_lex_state = 2},
[156] = {.lex_state = 15, .external_lex_state = 2},
[157] = {.lex_state = 16, .external_lex_state = 2},
[158] = {.lex_state = 14, .external_lex_state = 2},
[159] = {.lex_state = 14, .external_lex_state = 2},
[160] = {.lex_state = 16, .external_lex_state = 2},
[161] = {.lex_state = 16, .external_lex_state = 2},
[162] = {.lex_state = 15, .external_lex_state = 2},
[163] = {.lex_state = 17, .external_lex_state = 2},
[164] = {.lex_state = 14, .external_lex_state = 2},
[165] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[166] = {.lex_state = 16, .external_lex_state = 2},
[167] = {.lex_state = 13, .external_lex_state = 2},
[168] = {.lex_state = 1, .external_lex_state = 1},
[169] = {.lex_state = 1, .external_lex_state = 1},
[170] = {.lex_state = 0, .external_lex_state = 3},
[171] = {.lex_state = 0, .external_lex_state = 3},
[172] = {.lex_state = 0, .external_lex_state = 3},
2021-07-01 07:36:35 -04:00
[173] = {.lex_state = 0, .external_lex_state = 3},
[174] = {.lex_state = 0, .external_lex_state = 3},
[175] = {.lex_state = 0, .external_lex_state = 3},
[176] = {.lex_state = 0, .external_lex_state = 3},
2021-07-01 07:36:35 -04:00
[177] = {.lex_state = 0, .external_lex_state = 3},
[178] = {.lex_state = 0, .external_lex_state = 3},
[179] = {.lex_state = 0, .external_lex_state = 3},
[180] = {.lex_state = 0, .external_lex_state = 3},
[181] = {.lex_state = 0, .external_lex_state = 3},
[182] = {.lex_state = 0, .external_lex_state = 3},
[183] = {.lex_state = 0, .external_lex_state = 3},
[184] = {.lex_state = 0, .external_lex_state = 3},
[185] = {.lex_state = 0, .external_lex_state = 3},
[186] = {.lex_state = 0, .external_lex_state = 3},
[187] = {.lex_state = 0, .external_lex_state = 3},
[188] = {.lex_state = 0, .external_lex_state = 3},
[189] = {.lex_state = 0, .external_lex_state = 3},
[190] = {.lex_state = 0, .external_lex_state = 3},
[191] = {.lex_state = 0, .external_lex_state = 3},
[192] = {.lex_state = 0, .external_lex_state = 3},
[193] = {.lex_state = 0, .external_lex_state = 3},
[194] = {.lex_state = 0, .external_lex_state = 3},
[195] = {.lex_state = 0, .external_lex_state = 3},
[196] = {.lex_state = 0, .external_lex_state = 3},
[197] = {.lex_state = 0, .external_lex_state = 3},
[198] = {.lex_state = 0, .external_lex_state = 3},
[199] = {.lex_state = 0, .external_lex_state = 3},
[200] = {.lex_state = 0, .external_lex_state = 3},
[201] = {.lex_state = 0, .external_lex_state = 3},
[202] = {.lex_state = 0, .external_lex_state = 3},
[203] = {.lex_state = 0, .external_lex_state = 3},
[204] = {.lex_state = 0, .external_lex_state = 3},
[205] = {.lex_state = 0, .external_lex_state = 3},
2021-07-01 07:36:35 -04:00
[206] = {.lex_state = 0, .external_lex_state = 3},
[207] = {.lex_state = 0, .external_lex_state = 3},
[208] = {.lex_state = 2},
2021-07-01 07:36:35 -04:00
[209] = {.lex_state = 2},
[210] = {.lex_state = 2},
[211] = {.lex_state = 2},
[212] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[213] = {.lex_state = 37},
[214] = {.lex_state = 3},
[215] = {.lex_state = 3},
[216] = {.lex_state = 3},
[217] = {.lex_state = 3},
[218] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[219] = {.lex_state = 37},
[220] = {.lex_state = 3},
[221] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[222] = {.lex_state = 3},
[223] = {.lex_state = 3},
[224] = {.lex_state = 3},
[225] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[226] = {.lex_state = 3},
[227] = {.lex_state = 3},
[228] = {.lex_state = 3},
[229] = {.lex_state = 0},
[230] = {.lex_state = 2},
[231] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[232] = {.lex_state = 3},
[233] = {.lex_state = 0},
2021-06-30 01:40:33 -04:00
[234] = {.lex_state = 1, .external_lex_state = 1},
[235] = {.lex_state = 1, .external_lex_state = 1},
[236] = {.lex_state = 1, .external_lex_state = 1},
[237] = {.lex_state = 1, .external_lex_state = 1},
[238] = {.lex_state = 1, .external_lex_state = 1},
[239] = {.lex_state = 1, .external_lex_state = 1},
2021-07-01 07:36:35 -04:00
[240] = {.lex_state = 1, .external_lex_state = 1},
[241] = {.lex_state = 1, .external_lex_state = 1},
[242] = {.lex_state = 1, .external_lex_state = 1},
2021-06-30 01:40:33 -04:00
[243] = {.lex_state = 12, .external_lex_state = 2},
[244] = {.lex_state = 12, .external_lex_state = 2},
[245] = {.lex_state = 12, .external_lex_state = 2},
[246] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[247] = {.lex_state = 12, .external_lex_state = 2},
[248] = {.lex_state = 12, .external_lex_state = 2},
[249] = {.lex_state = 12, .external_lex_state = 2},
[250] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[251] = {.lex_state = 12, .external_lex_state = 2},
[252] = {.lex_state = 12, .external_lex_state = 2},
[253] = {.lex_state = 12, .external_lex_state = 2},
[254] = {.lex_state = 12, .external_lex_state = 2},
[255] = {.lex_state = 12, .external_lex_state = 2},
[256] = {.lex_state = 12, .external_lex_state = 2},
[257] = {.lex_state = 12, .external_lex_state = 2},
[258] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[259] = {.lex_state = 12, .external_lex_state = 2},
[260] = {.lex_state = 12, .external_lex_state = 2},
[261] = {.lex_state = 12, .external_lex_state = 2},
[262] = {.lex_state = 12, .external_lex_state = 2},
[263] = {.lex_state = 12, .external_lex_state = 2},
[264] = {.lex_state = 12, .external_lex_state = 2},
[265] = {.lex_state = 12, .external_lex_state = 2},
[266] = {.lex_state = 12, .external_lex_state = 2},
[267] = {.lex_state = 12, .external_lex_state = 2},
[268] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[269] = {.lex_state = 12, .external_lex_state = 2},
[270] = {.lex_state = 12, .external_lex_state = 2},
[271] = {.lex_state = 12, .external_lex_state = 2},
[272] = {.lex_state = 12, .external_lex_state = 2},
[273] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[274] = {.lex_state = 12, .external_lex_state = 2},
[275] = {.lex_state = 12, .external_lex_state = 2},
2021-06-30 01:40:33 -04:00
[276] = {.lex_state = 12, .external_lex_state = 2},
[277] = {.lex_state = 12, .external_lex_state = 2},
[278] = {.lex_state = 12, .external_lex_state = 2},
[279] = {.lex_state = 12, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[280] = {.lex_state = 12, .external_lex_state = 2},
[281] = {.lex_state = 12, .external_lex_state = 2},
[282] = {.lex_state = 12, .external_lex_state = 2},
[283] = {.lex_state = 16, .external_lex_state = 2},
[284] = {.lex_state = 14, .external_lex_state = 2},
[285] = {.lex_state = 14, .external_lex_state = 2},
[286] = {.lex_state = 14, .external_lex_state = 2},
[287] = {.lex_state = 14, .external_lex_state = 2},
[288] = {.lex_state = 14, .external_lex_state = 2},
[289] = {.lex_state = 14, .external_lex_state = 2},
[290] = {.lex_state = 14, .external_lex_state = 2},
[291] = {.lex_state = 14, .external_lex_state = 2},
[292] = {.lex_state = 14, .external_lex_state = 2},
[293] = {.lex_state = 14, .external_lex_state = 2},
[294] = {.lex_state = 14, .external_lex_state = 2},
[295] = {.lex_state = 14, .external_lex_state = 2},
[296] = {.lex_state = 14, .external_lex_state = 2},
[297] = {.lex_state = 14, .external_lex_state = 2},
[298] = {.lex_state = 14, .external_lex_state = 2},
[299] = {.lex_state = 14, .external_lex_state = 2},
[300] = {.lex_state = 14, .external_lex_state = 2},
[301] = {.lex_state = 14, .external_lex_state = 2},
[302] = {.lex_state = 14, .external_lex_state = 2},
[303] = {.lex_state = 14, .external_lex_state = 2},
[304] = {.lex_state = 16, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[305] = {.lex_state = 16, .external_lex_state = 2},
[306] = {.lex_state = 16, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[307] = {.lex_state = 16, .external_lex_state = 2},
[308] = {.lex_state = 16, .external_lex_state = 2},
[309] = {.lex_state = 13, .external_lex_state = 2},
[310] = {.lex_state = 16, .external_lex_state = 2},
[311] = {.lex_state = 17, .external_lex_state = 2},
[312] = {.lex_state = 17, .external_lex_state = 2},
[313] = {.lex_state = 17, .external_lex_state = 2},
[314] = {.lex_state = 17, .external_lex_state = 2},
[315] = {.lex_state = 16, .external_lex_state = 2},
[316] = {.lex_state = 16, .external_lex_state = 2},
[317] = {.lex_state = 16, .external_lex_state = 2},
[318] = {.lex_state = 16, .external_lex_state = 2},
[319] = {.lex_state = 16, .external_lex_state = 2},
[320] = {.lex_state = 16, .external_lex_state = 2},
[321] = {.lex_state = 16, .external_lex_state = 2},
[322] = {.lex_state = 16, .external_lex_state = 2},
[323] = {.lex_state = 16, .external_lex_state = 2},
[324] = {.lex_state = 16, .external_lex_state = 2},
[325] = {.lex_state = 16, .external_lex_state = 2},
[326] = {.lex_state = 16, .external_lex_state = 2},
[327] = {.lex_state = 16, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[328] = {.lex_state = 16, .external_lex_state = 2},
[329] = {.lex_state = 16, .external_lex_state = 2},
[330] = {.lex_state = 16, .external_lex_state = 2},
[331] = {.lex_state = 16, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[332] = {.lex_state = 17, .external_lex_state = 2},
[333] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[334] = {.lex_state = 16, .external_lex_state = 2},
[335] = {.lex_state = 16, .external_lex_state = 2},
[336] = {.lex_state = 16, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[337] = {.lex_state = 15, .external_lex_state = 2},
[338] = {.lex_state = 17, .external_lex_state = 2},
[339] = {.lex_state = 16, .external_lex_state = 2},
[340] = {.lex_state = 16, .external_lex_state = 2},
[341] = {.lex_state = 16, .external_lex_state = 2},
[342] = {.lex_state = 14, .external_lex_state = 2},
[343] = {.lex_state = 15, .external_lex_state = 2},
[344] = {.lex_state = 15, .external_lex_state = 2},
[345] = {.lex_state = 15, .external_lex_state = 2},
[346] = {.lex_state = 15, .external_lex_state = 2},
[347] = {.lex_state = 15, .external_lex_state = 2},
[348] = {.lex_state = 15, .external_lex_state = 2},
[349] = {.lex_state = 15, .external_lex_state = 2},
[350] = {.lex_state = 15, .external_lex_state = 2},
[351] = {.lex_state = 15, .external_lex_state = 2},
[352] = {.lex_state = 15, .external_lex_state = 2},
[353] = {.lex_state = 15, .external_lex_state = 2},
[354] = {.lex_state = 15, .external_lex_state = 2},
[355] = {.lex_state = 15, .external_lex_state = 2},
[356] = {.lex_state = 15, .external_lex_state = 2},
[357] = {.lex_state = 15, .external_lex_state = 2},
[358] = {.lex_state = 15, .external_lex_state = 2},
[359] = {.lex_state = 15, .external_lex_state = 2},
[360] = {.lex_state = 15, .external_lex_state = 2},
[361] = {.lex_state = 15, .external_lex_state = 2},
[362] = {.lex_state = 15, .external_lex_state = 2},
[363] = {.lex_state = 15, .external_lex_state = 2},
[364] = {.lex_state = 15, .external_lex_state = 2},
[365] = {.lex_state = 15, .external_lex_state = 2},
[366] = {.lex_state = 15, .external_lex_state = 2},
[367] = {.lex_state = 15, .external_lex_state = 2},
[368] = {.lex_state = 15, .external_lex_state = 2},
[369] = {.lex_state = 15, .external_lex_state = 2},
[370] = {.lex_state = 15, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[371] = {.lex_state = 15, .external_lex_state = 2},
[372] = {.lex_state = 15, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[373] = {.lex_state = 14, .external_lex_state = 2},
[374] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[375] = {.lex_state = 14, .external_lex_state = 2},
[376] = {.lex_state = 14, .external_lex_state = 2},
[377] = {.lex_state = 17, .external_lex_state = 2},
[378] = {.lex_state = 13, .external_lex_state = 2},
[379] = {.lex_state = 14, .external_lex_state = 2},
[380] = {.lex_state = 14, .external_lex_state = 2},
[381] = {.lex_state = 14, .external_lex_state = 2},
[382] = {.lex_state = 14, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[383] = {.lex_state = 14, .external_lex_state = 2},
[384] = {.lex_state = 13, .external_lex_state = 2},
[385] = {.lex_state = 13, .external_lex_state = 2},
[386] = {.lex_state = 13, .external_lex_state = 2},
[387] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[388] = {.lex_state = 13, .external_lex_state = 2},
[389] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[390] = {.lex_state = 14, .external_lex_state = 2},
[391] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[392] = {.lex_state = 17, .external_lex_state = 2},
[393] = {.lex_state = 17, .external_lex_state = 2},
[394] = {.lex_state = 13, .external_lex_state = 2},
[395] = {.lex_state = 17, .external_lex_state = 2},
[396] = {.lex_state = 13, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[397] = {.lex_state = 13, .external_lex_state = 2},
[398] = {.lex_state = 14, .external_lex_state = 2},
[399] = {.lex_state = 13, .external_lex_state = 2},
[400] = {.lex_state = 17, .external_lex_state = 2},
[401] = {.lex_state = 13, .external_lex_state = 2},
[402] = {.lex_state = 13, .external_lex_state = 2},
[403] = {.lex_state = 16, .external_lex_state = 2},
[404] = {.lex_state = 14, .external_lex_state = 2},
[405] = {.lex_state = 13, .external_lex_state = 2},
[406] = {.lex_state = 13, .external_lex_state = 2},
[407] = {.lex_state = 15, .external_lex_state = 2},
[408] = {.lex_state = 17, .external_lex_state = 2},
[409] = {.lex_state = 17, .external_lex_state = 2},
[410] = {.lex_state = 17, .external_lex_state = 2},
[411] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[412] = {.lex_state = 17, .external_lex_state = 2},
[413] = {.lex_state = 13, .external_lex_state = 2},
[414] = {.lex_state = 13, .external_lex_state = 2},
[415] = {.lex_state = 17, .external_lex_state = 2},
[416] = {.lex_state = 13, .external_lex_state = 2},
[417] = {.lex_state = 13, .external_lex_state = 2},
[418] = {.lex_state = 13, .external_lex_state = 2},
[419] = {.lex_state = 13, .external_lex_state = 2},
[420] = {.lex_state = 13, .external_lex_state = 2},
[421] = {.lex_state = 13, .external_lex_state = 2},
[422] = {.lex_state = 13, .external_lex_state = 2},
[423] = {.lex_state = 13, .external_lex_state = 2},
[424] = {.lex_state = 13, .external_lex_state = 2},
[425] = {.lex_state = 13, .external_lex_state = 2},
[426] = {.lex_state = 13, .external_lex_state = 2},
[427] = {.lex_state = 14, .external_lex_state = 2},
[428] = {.lex_state = 13, .external_lex_state = 2},
[429] = {.lex_state = 16, .external_lex_state = 2},
[430] = {.lex_state = 17, .external_lex_state = 2},
[431] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[432] = {.lex_state = 15, .external_lex_state = 2},
[433] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[434] = {.lex_state = 17, .external_lex_state = 2},
[435] = {.lex_state = 17, .external_lex_state = 2},
[436] = {.lex_state = 17, .external_lex_state = 2},
[437] = {.lex_state = 17, .external_lex_state = 2},
2021-07-01 07:36:35 -04:00
[438] = {.lex_state = 13, .external_lex_state = 2},
[439] = {.lex_state = 13, .external_lex_state = 2},
[440] = {.lex_state = 13, .external_lex_state = 2},
[441] = {.lex_state = 13, .external_lex_state = 2},
[442] = {.lex_state = 16, .external_lex_state = 2},
[443] = {.lex_state = 17, .external_lex_state = 2},
[444] = {.lex_state = 13, .external_lex_state = 2},
[445] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[446] = {.lex_state = 2},
[447] = {.lex_state = 2},
[448] = {.lex_state = 2},
[449] = {.lex_state = 2},
2021-07-01 07:36:35 -04:00
[450] = {.lex_state = 2},
[451] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[452] = {.lex_state = 0},
[453] = {.lex_state = 0},
[454] = {.lex_state = 3},
[455] = {.lex_state = 37},
[456] = {.lex_state = 37},
2021-07-01 07:36:35 -04:00
[457] = {.lex_state = 0},
[458] = {.lex_state = 0},
[459] = {.lex_state = 37},
[460] = {.lex_state = 37},
[461] = {.lex_state = 37},
[462] = {.lex_state = 3},
[463] = {.lex_state = 3},
[464] = {.lex_state = 3},
[465] = {.lex_state = 3},
[466] = {.lex_state = 3},
[467] = {.lex_state = 3},
[468] = {.lex_state = 3},
[469] = {.lex_state = 3},
[470] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[471] = {.lex_state = 3},
[472] = {.lex_state = 3},
[473] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[474] = {.lex_state = 5},
[475] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[476] = {.lex_state = 3},
[477] = {.lex_state = 3},
[478] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[479] = {.lex_state = 5},
[480] = {.lex_state = 3},
[481] = {.lex_state = 3},
[482] = {.lex_state = 3},
[483] = {.lex_state = 3},
[484] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[485] = {.lex_state = 3},
[486] = {.lex_state = 3},
[487] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[488] = {.lex_state = 5},
[489] = {.lex_state = 3},
[490] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[491] = {.lex_state = 5},
[492] = {.lex_state = 3},
[493] = {.lex_state = 3},
[494] = {.lex_state = 3},
[495] = {.lex_state = 3},
[496] = {.lex_state = 3},
[497] = {.lex_state = 3},
[498] = {.lex_state = 3},
[499] = {.lex_state = 3},
[500] = {.lex_state = 3},
[501] = {.lex_state = 3},
[502] = {.lex_state = 3},
[503] = {.lex_state = 3},
[504] = {.lex_state = 3},
[505] = {.lex_state = 3},
[506] = {.lex_state = 3},
[507] = {.lex_state = 3},
[508] = {.lex_state = 3},
[509] = {.lex_state = 3},
[510] = {.lex_state = 3},
[511] = {.lex_state = 3},
[512] = {.lex_state = 3},
[513] = {.lex_state = 3},
[514] = {.lex_state = 3},
[515] = {.lex_state = 3},
[516] = {.lex_state = 3},
[517] = {.lex_state = 3},
[518] = {.lex_state = 3},
[519] = {.lex_state = 3},
[520] = {.lex_state = 3},
[521] = {.lex_state = 3},
[522] = {.lex_state = 3},
[523] = {.lex_state = 3},
[524] = {.lex_state = 3},
[525] = {.lex_state = 3},
[526] = {.lex_state = 3},
[527] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[528] = {.lex_state = 5},
[529] = {.lex_state = 3},
[530] = {.lex_state = 3},
[531] = {.lex_state = 3},
[532] = {.lex_state = 3},
[533] = {.lex_state = 3},
[534] = {.lex_state = 3},
[535] = {.lex_state = 3},
[536] = {.lex_state = 3},
[537] = {.lex_state = 3},
[538] = {.lex_state = 3},
[539] = {.lex_state = 3},
[540] = {.lex_state = 3},
[541] = {.lex_state = 3},
[542] = {.lex_state = 3},
[543] = {.lex_state = 3},
[544] = {.lex_state = 3},
[545] = {.lex_state = 3},
[546] = {.lex_state = 3},
[547] = {.lex_state = 3},
[548] = {.lex_state = 3},
[549] = {.lex_state = 3},
[550] = {.lex_state = 3},
[551] = {.lex_state = 3},
[552] = {.lex_state = 3},
[553] = {.lex_state = 3},
2021-07-01 07:36:35 -04:00
[554] = {.lex_state = 3},
[555] = {.lex_state = 3},
[556] = {.lex_state = 3},
[557] = {.lex_state = 38},
[558] = {.lex_state = 38},
[559] = {.lex_state = 38},
[560] = {.lex_state = 38},
[561] = {.lex_state = 38},
[562] = {.lex_state = 38},
[563] = {.lex_state = 38},
[564] = {.lex_state = 38},
[565] = {.lex_state = 38},
[566] = {.lex_state = 38},
[567] = {.lex_state = 38},
[568] = {.lex_state = 38},
[569] = {.lex_state = 38},
[570] = {.lex_state = 38},
[571] = {.lex_state = 38},
[572] = {.lex_state = 38},
[573] = {.lex_state = 38},
[574] = {.lex_state = 38},
[575] = {.lex_state = 38},
[576] = {.lex_state = 38},
[577] = {.lex_state = 38},
[578] = {.lex_state = 38},
[579] = {.lex_state = 38},
2021-07-01 07:36:35 -04:00
[580] = {.lex_state = 38},
[581] = {.lex_state = 38},
[582] = {.lex_state = 38},
[583] = {.lex_state = 17},
[584] = {.lex_state = 17},
[585] = {.lex_state = 39},
[586] = {.lex_state = 39},
[587] = {.lex_state = 39},
[588] = {.lex_state = 39},
[589] = {.lex_state = 17},
[590] = {.lex_state = 17},
[591] = {.lex_state = 0},
[592] = {.lex_state = 0},
[593] = {.lex_state = 17},
[594] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[595] = {.lex_state = 39},
[596] = {.lex_state = 39},
[597] = {.lex_state = 39},
[598] = {.lex_state = 39},
[599] = {.lex_state = 0},
[600] = {.lex_state = 0},
[601] = {.lex_state = 0},
[602] = {.lex_state = 0},
[603] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[604] = {.lex_state = 0},
[605] = {.lex_state = 0},
[606] = {.lex_state = 0},
[607] = {.lex_state = 39},
[608] = {.lex_state = 17},
[609] = {.lex_state = 17},
[610] = {.lex_state = 0},
[611] = {.lex_state = 0},
[612] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[613] = {.lex_state = 0},
[614] = {.lex_state = 39},
[615] = {.lex_state = 39},
[616] = {.lex_state = 39},
[617] = {.lex_state = 39},
[618] = {.lex_state = 0},
[619] = {.lex_state = 39},
2021-07-01 07:36:35 -04:00
[620] = {.lex_state = 0},
[621] = {.lex_state = 0},
[622] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[623] = {.lex_state = 0},
[624] = {.lex_state = 17},
[625] = {.lex_state = 39},
[626] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[627] = {.lex_state = 17},
[628] = {.lex_state = 0},
[629] = {.lex_state = 0},
[630] = {.lex_state = 17},
[631] = {.lex_state = 39},
[632] = {.lex_state = 39},
2021-07-01 07:36:35 -04:00
[633] = {.lex_state = 39},
[634] = {.lex_state = 39},
2021-07-01 07:36:35 -04:00
[635] = {.lex_state = 39},
[636] = {.lex_state = 39},
[637] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[638] = {.lex_state = 39},
[639] = {.lex_state = 17},
[640] = {.lex_state = 17},
[641] = {.lex_state = 0},
[642] = {.lex_state = 0},
[643] = {.lex_state = 0},
[644] = {.lex_state = 0},
[645] = {.lex_state = 17},
[646] = {.lex_state = 17},
[647] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[648] = {.lex_state = 39},
[649] = {.lex_state = 39},
[650] = {.lex_state = 39},
2021-07-01 07:36:35 -04:00
[651] = {.lex_state = 39},
[652] = {.lex_state = 39},
[653] = {.lex_state = 0},
[654] = {.lex_state = 17},
[655] = {.lex_state = 17},
2021-07-01 07:36:35 -04:00
[656] = {.lex_state = 0},
[657] = {.lex_state = 17},
[658] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[659] = {.lex_state = 0},
[660] = {.lex_state = 39},
[661] = {.lex_state = 17},
[662] = {.lex_state = 17},
2021-07-01 07:36:35 -04:00
[663] = {.lex_state = 0},
[664] = {.lex_state = 39},
[665] = {.lex_state = 0},
[666] = {.lex_state = 0},
[667] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[668] = {.lex_state = 17},
[669] = {.lex_state = 17},
2021-07-01 07:36:35 -04:00
[670] = {.lex_state = 0},
[671] = {.lex_state = 0},
[672] = {.lex_state = 0},
[673] = {.lex_state = 0},
[674] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[675] = {.lex_state = 17},
[676] = {.lex_state = 17},
2021-07-01 07:36:35 -04:00
[677] = {.lex_state = 0},
[678] = {.lex_state = 0},
2021-07-01 07:36:35 -04:00
[679] = {.lex_state = 0},
[680] = {.lex_state = 0},
[681] = {.lex_state = 0},
[682] = {.lex_state = 17},
[683] = {.lex_state = 17},
[684] = {.lex_state = 0},
};
enum {
ts_external_token_bracket_argument = 0,
ts_external_token_bracket_comment = 1,
ts_external_token_line_comment = 2,
};
static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = {
[ts_external_token_bracket_argument] = sym_bracket_argument,
[ts_external_token_bracket_comment] = sym_bracket_comment,
[ts_external_token_line_comment] = sym_line_comment,
};
static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = {
[1] = {
[ts_external_token_bracket_argument] = true,
[ts_external_token_bracket_comment] = true,
[ts_external_token_line_comment] = true,
},
[2] = {
[ts_external_token_bracket_comment] = true,
[ts_external_token_line_comment] = true,
},
[3] = {
[ts_external_token_bracket_argument] = true,
},
2021-06-17 17:06:32 -04:00
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym__escape_identity] = ACTIONS(1),
[anon_sym_BSLASHt] = ACTIONS(1),
[anon_sym_BSLASHr] = ACTIONS(1),
[anon_sym_BSLASHn] = ACTIONS(1),
[sym__escape_semicolon] = ACTIONS(1),
[anon_sym_DOLLAR] = ACTIONS(1),
[aux_sym__untrimmed_argument_token1] = ACTIONS(1),
2021-07-01 07:36:35 -04:00
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2021-04-11 11:27:20 -04:00
[anon_sym_DQUOTE] = ACTIONS(1),
[aux_sym_unquoted_argument_token1] = ACTIONS(1),
[aux_sym_if_command_token1] = ACTIONS(1),
[sym_bracket_argument] = ACTIONS(1),
[sym_bracket_comment] = ACTIONS(1),
[sym_line_comment] = ACTIONS(1),
2021-04-10 10:29:19 -04:00
},
2021-06-17 16:32:18 -04:00
[1] = {
2021-07-01 07:36:35 -04:00
[sym_source_file] = STATE(679),
[sym_if_command] = STATE(9),
[sym_if_condition] = STATE(165),
2021-07-01 07:36:35 -04:00
[sym_foreach_command] = STATE(124),
[sym_foreach_loop] = STATE(165),
2021-07-01 07:36:35 -04:00
[sym_while_command] = STATE(125),
[sym_while_loop] = STATE(165),
2021-07-01 07:36:35 -04:00
[sym_function_command] = STATE(127),
[sym_function_def] = STATE(165),
2021-07-01 07:36:35 -04:00
[sym_macro_command] = STATE(128),
[sym_macro_def] = STATE(165),
[sym_normal_command] = STATE(165),
[sym__command_invocation] = STATE(165),
[sym__untrimmed_command_invocation] = STATE(165),
[aux_sym_source_file_repeat1] = STATE(165),
[ts_builtin_sym_end] = ACTIONS(3),
[aux_sym__untrimmed_argument_token1] = ACTIONS(5),
[sym_if] = ACTIONS(7),
[sym_foreach] = ACTIONS(9),
[sym_while] = ACTIONS(11),
[sym_function] = ACTIONS(13),
[sym_macro] = ACTIONS(15),
[sym_identifier] = ACTIONS(17),
[sym_bracket_comment] = ACTIONS(5),
[sym_line_comment] = ACTIONS(5),
2021-06-14 16:12:45 -04:00
},
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const uint16_t ts_small_parse_table[] = {
[0] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(25), 1,
sym_endif,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(375), 1,
sym_endif_command,
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[64] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(29), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(349), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[128] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
ACTIONS(31), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(428), 1,
sym_endif_command,
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[192] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(29), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(343), 1,
sym_endif_command,
ACTIONS(33), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(3), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[256] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(31), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(444), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(35), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(4), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[320] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(37), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(259), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[384] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
ACTIONS(39), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(315), 1,
sym_endif_command,
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[448] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(43), 1,
sym_endif,
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(387), 1,
sym_endif_command,
ACTIONS(41), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(13), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[512] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(37), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(277), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(45), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(7), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[576] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
2021-07-01 07:36:35 -04:00
ACTIONS(25), 1,
sym_endif,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(383), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(47), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(2), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[640] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(39), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(304), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(49), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(8), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[704] = 17,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(21), 1,
sym_elseif,
ACTIONS(23), 1,
sym_else,
ACTIONS(27), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(43), 1,
sym_endif,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(409), 1,
sym_endif_command,
2021-07-01 07:36:35 -04:00
ACTIONS(19), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
[768] = 16,
ACTIONS(54), 1,
sym_if,
ACTIONS(57), 1,
sym_elseif,
ACTIONS(60), 1,
sym_else,
ACTIONS(63), 1,
sym_endif,
ACTIONS(65), 1,
sym_foreach,
ACTIONS(68), 1,
sym_while,
ACTIONS(71), 1,
sym_function,
ACTIONS(74), 1,
sym_macro,
ACTIONS(77), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(10), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(147), 1,
sym_macro_command,
STATE(153), 1,
2021-06-30 01:40:33 -04:00
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(158), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(160), 1,
sym_function_command,
ACTIONS(51), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(14), 11,
sym_elseif_command,
sym_else_command,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_if_condition_repeat1,
2021-07-01 07:36:35 -04:00
[829] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(88), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[883] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(98), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(96), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(106), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[937] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(100), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[991] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(100), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(102), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(21), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1045] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(104), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1099] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(104), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(106), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(23), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1153] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(108), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1207] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(112), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(110), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(53), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1261] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(114), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1315] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(118), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(116), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(57), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1369] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(122), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(120), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(60), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1423] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(126), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(29), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1477] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(130), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(128), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
2021-06-17 17:06:32 -04:00
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
2021-06-17 17:06:32 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(63), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1531] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(134), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(132), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
2021-06-17 17:06:32 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(66), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1585] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(136), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1639] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(140), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(138), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(69), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1693] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(136), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(142), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(34), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1747] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(146), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(144), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(35), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1801] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(150), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(148), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(37), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1855] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(152), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1909] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(154), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[1963] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(154), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(156), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(39), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2017] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(158), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2071] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(158), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(160), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(40), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2125] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(162), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2179] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(164), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2233] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(166), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2287] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(168), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2341] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(172), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(170), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(45), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2395] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(174), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2449] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(176), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2503] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(176), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(178), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(81), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2557] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(182), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(180), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(65), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2611] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(186), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(184), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(91), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2665] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(190), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(188), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(96), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2719] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(194), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(192), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(19), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2773] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(196), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2827] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(198), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2881] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(200), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2935] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(200), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(202), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[2989] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(88), 1,
anon_sym_RPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(204), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(51), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3043] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(208), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(206), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(17), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3097] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(210), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3151] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(210), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(212), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(103), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3205] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(216), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(214), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(52), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3259] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(218), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3313] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(218), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(220), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(105), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3367] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(224), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(222), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(93), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3421] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(98), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3475] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(226), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3529] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(228), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3583] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(230), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3637] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(230), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(232), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(107), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3691] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(228), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(234), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(99), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3745] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(236), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3799] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(236), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(238), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(108), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3853] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(242), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(240), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(109), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3907] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(246), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(244), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(41), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[3961] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(248), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4015] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(250), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4069] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(254), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(252), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(73), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4123] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(254), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4177] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(258), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(256), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(74), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4231] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(262), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(260), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(64), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4285] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(246), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4339] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(258), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4393] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(264), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4447] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(266), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4501] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(270), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(268), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(76), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4555] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(274), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(272), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(80), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4609] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(278), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(276), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(90), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4663] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(282), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(280), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(42), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4717] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(286), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(284), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(82), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4771] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(290), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(288), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(79), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4825] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(286), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4879] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(282), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4933] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(292), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[4987] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(292), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(294), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(98), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5041] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(296), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5095] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(296), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(298), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(104), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5149] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(302), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(300), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(111), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5203] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(262), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5257] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(306), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(304), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(15), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5311] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(308), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5365] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(310), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
2021-07-01 07:36:35 -04:00
sym__paren_argument,
aux_sym_if_command_repeat2,
2021-07-01 07:36:35 -04:00
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5419] = 13,
ACTIONS(315), 1,
anon_sym_DOLLAR,
ACTIONS(321), 1,
anon_sym_LPAREN,
ACTIONS(324), 1,
anon_sym_RPAREN,
ACTIONS(326), 1,
anon_sym_DQUOTE,
ACTIONS(329), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(332), 1,
sym_bracket_argument,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(318), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(312), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5473] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(335), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5527] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(339), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(337), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(89), 4,
sym_argument,
sym__untrimmed_argument,
2021-07-01 07:36:35 -04:00
sym__paren_argument,
aux_sym_if_command_repeat2,
2021-07-01 07:36:35 -04:00
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5581] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(341), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5635] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(343), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
2021-07-01 07:36:35 -04:00
sym__paren_argument,
aux_sym_if_command_repeat2,
2021-07-01 07:36:35 -04:00
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5689] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(345), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5743] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(347), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
2021-07-01 07:36:35 -04:00
sym__paren_argument,
aux_sym_if_command_repeat2,
2021-07-01 07:36:35 -04:00
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5797] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(349), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[5851] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(351), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5905] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(353), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5959] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(353), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(355), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(44), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6013] = 13,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(86), 1,
anon_sym_LPAREN,
ACTIONS(90), 1,
anon_sym_DQUOTE,
ACTIONS(92), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(94), 1,
sym_bracket_argument,
ACTIONS(216), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym__escape_encoded,
STATE(241), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(84), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(169), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym_if_command_repeat2,
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6067] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(359), 1,
sym_endforeach,
ACTIONS(361), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(258), 1,
sym_endforeach_command,
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6123] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(365), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(305), 1,
sym_endforeach_command,
ACTIONS(363), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(152), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6179] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(369), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(344), 1,
sym_endforeach_command,
ACTIONS(367), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(117), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6235] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(373), 1,
sym_endwhile,
ACTIONS(375), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(345), 1,
sym_endwhile_command,
ACTIONS(371), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(118), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6291] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(379), 1,
sym_endmacro,
ACTIONS(381), 1,
sym_identifier,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(347), 1,
sym_endmacro_command,
ACTIONS(377), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(129), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6347] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(369), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(350), 1,
sym_endforeach_command,
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6403] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(373), 1,
sym_endwhile,
ACTIONS(375), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(351), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6459] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(387), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(438), 1,
sym_endmacro_command,
ACTIONS(385), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(123), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6515] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(389), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(426), 1,
sym_endforeach_command,
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6571] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(391), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(425), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6627] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(395), 1,
sym_endfunction,
ACTIONS(397), 1,
sym_identifier,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(424), 1,
sym_endfunction_command,
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6683] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(387), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(423), 1,
sym_endmacro_command,
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6739] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(403), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(389), 1,
sym_endforeach_command,
ACTIONS(401), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(144), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6795] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(407), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(392), 1,
sym_endwhile_command,
ACTIONS(405), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(150), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6851] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(397), 1,
sym_identifier,
ACTIONS(409), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(352), 1,
sym_endfunction_command,
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6907] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(397), 1,
sym_identifier,
ACTIONS(413), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(393), 1,
sym_endfunction_command,
ACTIONS(411), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(154), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[6963] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(417), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(395), 1,
sym_endmacro_command,
ACTIONS(415), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(155), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7019] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(379), 1,
sym_endmacro,
ACTIONS(381), 1,
sym_identifier,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(353), 1,
sym_endmacro_command,
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7075] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(421), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(382), 1,
sym_endforeach_command,
ACTIONS(419), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(138), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7131] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(425), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(381), 1,
sym_endwhile_command,
ACTIONS(423), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(139), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7187] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(397), 1,
sym_identifier,
ACTIONS(429), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(380), 1,
sym_endfunction_command,
ACTIONS(427), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(141), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7243] = 12,
ACTIONS(433), 1,
anon_sym_DOLLAR,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(439), 1,
anon_sym_DQUOTE,
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(443), 1,
sym_bracket_argument,
STATE(458), 1,
sym__escape_encoded,
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(435), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(658), 3,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[7293] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(447), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(379), 1,
sym_endmacro_command,
ACTIONS(445), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(142), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7349] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(449), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(245), 1,
sym_endmacro_command,
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7405] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(397), 1,
sym_identifier,
ACTIONS(451), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(262), 1,
sym_endfunction_command,
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7461] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(453), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(257), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7517] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(421), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(284), 1,
sym_endforeach_command,
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7573] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(425), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(373), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7629] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(395), 1,
sym_endfunction,
ACTIONS(397), 1,
sym_identifier,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(439), 1,
sym_endfunction_command,
ACTIONS(455), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(122), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7685] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(397), 1,
sym_identifier,
ACTIONS(429), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
STATE(159), 1,
sym_while_command,
STATE(342), 1,
sym_endfunction_command,
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7741] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(447), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(404), 1,
sym_endmacro_command,
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7797] = 12,
ACTIONS(433), 1,
anon_sym_DOLLAR,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(439), 1,
anon_sym_DQUOTE,
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(443), 1,
sym_bracket_argument,
STATE(458), 1,
sym__escape_encoded,
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
ACTIONS(457), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(610), 3,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[7847] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(403), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(410), 1,
sym_endforeach_command,
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[7903] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(381), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(459), 1,
sym_endmacro,
2021-07-01 07:36:35 -04:00
STATE(5), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(161), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(319), 1,
sym_endmacro_command,
2021-07-01 07:36:35 -04:00
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[7959] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(389), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(441), 1,
sym_endforeach_command,
ACTIONS(461), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(120), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8015] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(381), 1,
sym_identifier,
ACTIONS(449), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(265), 1,
sym_endmacro_command,
ACTIONS(463), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(135), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8071] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(397), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(465), 1,
sym_endfunction,
2021-07-01 07:36:35 -04:00
STATE(12), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(318), 1,
sym_endfunction_command,
2021-07-01 07:36:35 -04:00
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8127] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(391), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(440), 1,
sym_endwhile_command,
ACTIONS(467), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(121), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8183] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(375), 1,
sym_identifier,
ACTIONS(407), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
STATE(130), 1,
sym_foreach_command,
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(411), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8239] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(375), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(469), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(130), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(131), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(132), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(134), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(317), 1,
sym_endwhile_command,
ACTIONS(383), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8295] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(361), 1,
sym_identifier,
ACTIONS(365), 1,
sym_endforeach,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
STATE(316), 1,
sym_endforeach_command,
2021-07-01 07:36:35 -04:00
ACTIONS(357), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8351] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(359), 1,
sym_endforeach,
ACTIONS(361), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(6), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(119), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(140), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(146), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(149), 1,
sym_while_command,
STATE(272), 1,
sym_endforeach_command,
ACTIONS(471), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(112), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8407] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(397), 1,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(413), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(412), 1,
sym_endfunction_command,
ACTIONS(393), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8463] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(381), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(417), 1,
sym_endmacro,
STATE(5), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(114), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(115), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
STATE(415), 1,
sym_endmacro_command,
ACTIONS(399), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8519] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(381), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(459), 1,
sym_endmacro,
2021-07-01 07:36:35 -04:00
STATE(5), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(114), 1,
sym_foreach_command,
STATE(115), 1,
sym_while_command,
STATE(116), 1,
2021-06-30 01:40:33 -04:00
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(161), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(308), 1,
sym_endmacro_command,
2021-07-01 07:36:35 -04:00
ACTIONS(473), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(145), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8575] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(397), 1,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(465), 1,
sym_endfunction,
2021-07-01 07:36:35 -04:00
STATE(12), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(307), 1,
sym_endfunction_command,
2021-07-01 07:36:35 -04:00
ACTIONS(475), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(148), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8631] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(375), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(453), 1,
sym_endwhile,
2021-07-01 07:36:35 -04:00
STATE(11), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(130), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(131), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
STATE(271), 1,
sym_endwhile_command,
2021-07-01 07:36:35 -04:00
ACTIONS(477), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(137), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8687] = 15,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(375), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(469), 1,
sym_endwhile,
STATE(11), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(130), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(131), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(132), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(134), 1,
2021-06-30 01:40:33 -04:00
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(306), 1,
sym_endwhile_command,
ACTIONS(479), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(151), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
2021-07-01 07:36:35 -04:00
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[8743] = 15,
ACTIONS(7), 1,
sym_if,
2021-07-01 07:36:35 -04:00
ACTIONS(9), 1,
sym_foreach,
2021-07-01 07:36:35 -04:00
ACTIONS(11), 1,
sym_while,
2021-07-01 07:36:35 -04:00
ACTIONS(13), 1,
sym_function,
2021-07-01 07:36:35 -04:00
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(397), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(451), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(266), 1,
sym_endfunction_command,
ACTIONS(481), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(136), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8799] = 15,
ACTIONS(7), 1,
sym_if,
2021-07-01 07:36:35 -04:00
ACTIONS(9), 1,
sym_foreach,
2021-07-01 07:36:35 -04:00
ACTIONS(11), 1,
sym_while,
2021-07-01 07:36:35 -04:00
ACTIONS(13), 1,
sym_function,
2021-07-01 07:36:35 -04:00
ACTIONS(15), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(397), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(409), 1,
sym_endfunction,
STATE(12), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(113), 1,
sym_foreach_command,
STATE(156), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(346), 1,
sym_endfunction_command,
ACTIONS(483), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(126), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8855] = 14,
ACTIONS(488), 1,
sym_if,
2021-07-01 07:36:35 -04:00
ACTIONS(491), 1,
sym_foreach,
2021-07-01 07:36:35 -04:00
ACTIONS(494), 1,
sym_while,
2021-07-01 07:36:35 -04:00
ACTIONS(497), 1,
sym_function,
2021-07-01 07:36:35 -04:00
ACTIONS(500), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(503), 1,
sym_endmacro,
ACTIONS(505), 1,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(5), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(114), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(115), 1,
2021-06-30 01:40:33 -04:00
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(116), 1,
sym_macro_command,
STATE(161), 1,
sym_function_command,
ACTIONS(485), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(162), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8908] = 14,
ACTIONS(488), 1,
sym_if,
2021-07-01 07:36:35 -04:00
ACTIONS(491), 1,
sym_foreach,
2021-07-01 07:36:35 -04:00
ACTIONS(494), 1,
sym_while,
2021-07-01 07:36:35 -04:00
ACTIONS(497), 1,
sym_function,
2021-07-01 07:36:35 -04:00
ACTIONS(500), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(508), 1,
ts_builtin_sym_end,
ACTIONS(513), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(9), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(124), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(125), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
STATE(127), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(128), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
ACTIONS(510), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(163), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[8961] = 14,
ACTIONS(488), 1,
sym_if,
2021-07-01 07:36:35 -04:00
ACTIONS(491), 1,
sym_foreach,
2021-07-01 07:36:35 -04:00
ACTIONS(494), 1,
sym_while,
2021-07-01 07:36:35 -04:00
ACTIONS(497), 1,
sym_function,
2021-07-01 07:36:35 -04:00
ACTIONS(500), 1,
sym_macro,
2021-07-01 07:36:35 -04:00
ACTIONS(503), 1,
sym_endwhile,
ACTIONS(519), 1,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
STATE(11), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(130), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(131), 1,
sym_while_command,
STATE(132), 1,
sym_function_command,
STATE(134), 1,
sym_macro_command,
ACTIONS(516), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(164), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[9014] = 14,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_identifier,
2021-07-01 07:36:35 -04:00
ACTIONS(522), 1,
ts_builtin_sym_end,
STATE(9), 1,
sym_if_command,
2021-07-01 07:36:35 -04:00
STATE(124), 1,
sym_foreach_command,
STATE(125), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(128), 1,
sym_macro_command,
2021-07-01 07:36:35 -04:00
ACTIONS(524), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(163), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[9067] = 14,
ACTIONS(488), 1,
sym_if,
ACTIONS(491), 1,
sym_foreach,
ACTIONS(494), 1,
sym_while,
ACTIONS(497), 1,
sym_function,
ACTIONS(500), 1,
sym_macro,
ACTIONS(503), 1,
sym_endfunction,
ACTIONS(529), 1,
sym_identifier,
STATE(12), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
2021-07-01 07:36:35 -04:00
STATE(156), 1,
sym_macro_command,
STATE(157), 1,
sym_function_command,
2021-07-01 07:36:35 -04:00
STATE(159), 1,
sym_while_command,
2021-07-01 07:36:35 -04:00
ACTIONS(526), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(166), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
2021-07-01 07:36:35 -04:00
[9120] = 14,
ACTIONS(488), 1,
sym_if,
ACTIONS(491), 1,
sym_foreach,
ACTIONS(494), 1,
sym_while,
ACTIONS(497), 1,
sym_function,
ACTIONS(500), 1,
sym_macro,
ACTIONS(503), 1,
sym_endforeach,
ACTIONS(535), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(119), 1,
sym_macro_command,
STATE(140), 1,
sym_function_command,
STATE(146), 1,
sym_foreach_command,
STATE(149), 1,
sym_while_command,
ACTIONS(532), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(167), 9,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[9173] = 7,
ACTIONS(541), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(546), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(168), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(538), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
ACTIONS(544), 7,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[9209] = 7,
ACTIONS(82), 1,
anon_sym_DOLLAR,
ACTIONS(551), 1,
aux_sym_unquoted_argument_token1,
STATE(239), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(168), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(237), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(80), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
ACTIONS(549), 7,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[9245] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(553), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(602), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9288] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(555), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(605), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9331] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(557), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(592), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9374] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(559), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(653), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9417] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(561), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(637), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9460] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
ACTIONS(563), 1,
anon_sym_RPAREN,
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(618), 1,
sym_argument,
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9503] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(565), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(684), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9546] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(567), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(665), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9589] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(569), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(626), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9632] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
ACTIONS(571), 1,
anon_sym_RPAREN,
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(613), 1,
sym_argument,
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9675] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(573), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(629), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9718] = 11,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(439), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(441), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(443), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
ACTIONS(575), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(628), 1,
sym_argument,
2021-07-01 07:36:35 -04:00
STATE(671), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(229), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9761] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(636), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9801] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(632), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9841] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(614), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9881] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(615), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9921] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(648), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[9961] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(664), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10001] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(616), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10041] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(617), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10081] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(633), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10121] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(660), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10161] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(587), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10201] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(598), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10241] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(638), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10281] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(597), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10321] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(585), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10361] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(651), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10401] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(634), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10441] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(635), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10481] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(596), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10521] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(586), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10561] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(649), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10601] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(650), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10641] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(652), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10681] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(631), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10721] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(595), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10761] = 10,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(581), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(583), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(585), 1,
sym_bracket_argument,
2021-07-01 07:36:35 -04:00
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(588), 1,
sym_argument,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
2021-07-01 07:36:35 -04:00
STATE(219), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10801] = 8,
ACTIONS(589), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(591), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(593), 1,
aux_sym_quoted_element_token1,
2021-07-01 07:36:35 -04:00
STATE(446), 1,
sym__escape_encoded,
STATE(612), 1,
sym_quoted_element,
2021-07-01 07:36:35 -04:00
STATE(230), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
2021-07-01 07:36:35 -04:00
STATE(447), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(587), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10834] = 8,
ACTIONS(589), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(593), 1,
aux_sym_quoted_element_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(595), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
STATE(446), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(611), 1,
sym_quoted_element,
2021-07-01 07:36:35 -04:00
STATE(230), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
2021-07-01 07:36:35 -04:00
STATE(447), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(587), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10867] = 8,
ACTIONS(589), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(593), 1,
aux_sym_quoted_element_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(597), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
STATE(446), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(656), 1,
sym_quoted_element,
2021-07-01 07:36:35 -04:00
STATE(230), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
2021-07-01 07:36:35 -04:00
STATE(447), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(587), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10900] = 7,
ACTIONS(602), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(605), 1,
anon_sym_DQUOTE,
ACTIONS(607), 1,
aux_sym_quoted_element_token1,
STATE(446), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_quoted_element_repeat1,
STATE(447), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(599), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10930] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(639), 1,
sym_variable,
STATE(231), 3,
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_variable_repeat1,
STATE(454), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10960] = 7,
ACTIONS(619), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(622), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(625), 1,
aux_sym_else_command_token1,
STATE(461), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_repeat1,
STATE(460), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(616), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[10990] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(583), 1,
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11020] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(627), 1,
2021-06-30 01:40:33 -04:00
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
sym_escape_sequence,
sym_variable_ref,
2021-06-30 01:40:33 -04:00
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11050] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(645), 1,
2021-06-30 01:40:33 -04:00
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
sym_escape_sequence,
sym_variable_ref,
2021-06-30 01:40:33 -04:00
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11080] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(646), 1,
2021-06-30 01:40:33 -04:00
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11110] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(624), 1,
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11140] = 7,
ACTIONS(579), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(627), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(629), 1,
aux_sym_else_command_token1,
STATE(461), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(213), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_repeat1,
STATE(460), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(577), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11170] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(657), 1,
sym_variable,
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11200] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(640), 1,
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11230] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(682), 1,
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11260] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(683), 1,
2021-06-30 01:40:33 -04:00
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11290] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(589), 1,
sym_variable,
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_variable_repeat1,
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11320] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(590), 1,
sym_variable,
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_variable_repeat1,
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11350] = 7,
ACTIONS(612), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(584), 1,
2021-06-30 01:40:33 -04:00
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11380] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(593), 1,
sym_variable,
2021-07-01 07:36:35 -04:00
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11410] = 7,
ACTIONS(612), 1,
aux_sym_variable_token1,
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(630), 1,
sym_variable,
STATE(231), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_variable_repeat1,
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11440] = 7,
ACTIONS(433), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(549), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(631), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
STATE(458), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(233), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
2021-07-01 07:36:35 -04:00
STATE(457), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(431), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11470] = 7,
ACTIONS(589), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(633), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
ACTIONS(635), 1,
aux_sym_quoted_element_token1,
2021-07-01 07:36:35 -04:00
STATE(446), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(211), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
2021-07-01 07:36:35 -04:00
STATE(447), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(587), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11500] = 7,
ACTIONS(614), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(637), 1,
aux_sym_variable_token1,
ACTIONS(639), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(232), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(610), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11530] = 7,
ACTIONS(644), 1,
2021-06-30 01:40:33 -04:00
aux_sym_variable_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(647), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(650), 1,
anon_sym_RBRACE,
STATE(451), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(232), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
2021-07-01 07:36:35 -04:00
STATE(454), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(641), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11560] = 7,
ACTIONS(544), 1,
anon_sym_RPAREN,
ACTIONS(655), 1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
ACTIONS(658), 1,
aux_sym_unquoted_argument_token1,
STATE(458), 1,
2021-06-30 01:40:33 -04:00
sym__escape_encoded,
2021-07-01 07:36:35 -04:00
STATE(233), 3,
2021-06-30 01:40:33 -04:00
sym_escape_sequence,
sym_variable_ref,
2021-07-01 07:36:35 -04:00
aux_sym_unquoted_argument_repeat1,
STATE(457), 3,
2021-06-30 01:40:33 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
2021-07-01 07:36:35 -04:00
ACTIONS(652), 5,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
[11590] = 2,
ACTIONS(663), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(661), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11609] = 2,
ACTIONS(667), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(665), 13,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11628] = 2,
ACTIONS(671), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(669), 13,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
2021-06-30 01:40:33 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-06-30 01:40:33 -04:00
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11647] = 2,
ACTIONS(675), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(673), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-06-30 01:40:33 -04:00
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11666] = 2,
ACTIONS(679), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(677), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-06-30 01:40:33 -04:00
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11685] = 2,
ACTIONS(683), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(681), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-06-30 01:40:33 -04:00
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11704] = 2,
ACTIONS(687), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(685), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-06-30 01:40:33 -04:00
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11723] = 2,
ACTIONS(691), 1,
2021-06-30 01:40:33 -04:00
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(689), 13,
sym_bracket_argument,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
[11742] = 2,
ACTIONS(695), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(693), 13,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[11761] = 2,
ACTIONS(697), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11778] = 2,
ACTIONS(701), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(703), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11795] = 2,
ACTIONS(705), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11812] = 2,
ACTIONS(709), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(711), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11829] = 2,
ACTIONS(713), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11846] = 2,
ACTIONS(717), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11863] = 2,
ACTIONS(721), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11880] = 2,
ACTIONS(725), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(727), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11897] = 2,
ACTIONS(729), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11914] = 2,
ACTIONS(733), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11931] = 2,
ACTIONS(737), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11948] = 2,
ACTIONS(741), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(743), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11965] = 2,
ACTIONS(745), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(747), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11982] = 2,
ACTIONS(749), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(751), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[11999] = 2,
ACTIONS(753), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12016] = 2,
ACTIONS(757), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12033] = 2,
ACTIONS(761), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12050] = 2,
ACTIONS(765), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12067] = 2,
ACTIONS(769), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(771), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12084] = 2,
ACTIONS(773), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12101] = 2,
ACTIONS(777), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(779), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12118] = 2,
ACTIONS(781), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(783), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12135] = 2,
ACTIONS(785), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12152] = 2,
ACTIONS(789), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12169] = 2,
ACTIONS(793), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(795), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12186] = 2,
ACTIONS(797), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12203] = 2,
ACTIONS(801), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12220] = 2,
ACTIONS(805), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12237] = 2,
ACTIONS(809), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12254] = 2,
ACTIONS(813), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12271] = 2,
ACTIONS(817), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12288] = 2,
ACTIONS(821), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12305] = 2,
ACTIONS(825), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(827), 9,
2021-06-30 01:40:33 -04:00
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12322] = 2,
ACTIONS(829), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12339] = 2,
ACTIONS(833), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12356] = 2,
ACTIONS(837), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12373] = 2,
ACTIONS(841), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12390] = 2,
ACTIONS(845), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12407] = 2,
ACTIONS(849), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12424] = 2,
ACTIONS(853), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12441] = 2,
ACTIONS(697), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12456] = 2,
ACTIONS(757), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12471] = 2,
ACTIONS(713), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12486] = 2,
ACTIONS(717), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12501] = 2,
ACTIONS(721), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12516] = 2,
ACTIONS(725), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(727), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[12531] = 2,
ACTIONS(729), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 7,
sym_if,
sym_foreach,
sym_while,
2021-06-30 01:40:33 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12546] = 2,
ACTIONS(733), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12561] = 2,
ACTIONS(737), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12576] = 2,
ACTIONS(853), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12591] = 2,
ACTIONS(849), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 7,
2021-06-17 16:32:18 -04:00
sym_if,
2021-06-14 15:33:30 -04:00
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
sym_endwhile,
2021-06-17 17:06:32 -04:00
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12606] = 2,
ACTIONS(845), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 7,
2021-06-17 16:32:18 -04:00
sym_if,
2021-06-14 15:33:30 -04:00
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
sym_endwhile,
2021-06-17 17:06:32 -04:00
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12621] = 2,
ACTIONS(841), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12636] = 2,
ACTIONS(837), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12651] = 2,
ACTIONS(829), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12666] = 2,
ACTIONS(821), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12681] = 2,
ACTIONS(817), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12696] = 2,
ACTIONS(805), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12711] = 2,
ACTIONS(801), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12726] = 2,
ACTIONS(797), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12741] = 2,
ACTIONS(697), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12756] = 2,
ACTIONS(833), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12771] = 2,
ACTIONS(813), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12786] = 2,
ACTIONS(809), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12801] = 2,
ACTIONS(789), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12816] = 2,
ACTIONS(785), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12831] = 2,
ACTIONS(845), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12846] = 2,
ACTIONS(765), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12861] = 2,
ACTIONS(841), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12876] = 2,
ACTIONS(801), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12891] = 2,
ACTIONS(837), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12906] = 2,
ACTIONS(797), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 6,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[12921] = 2,
ACTIONS(761), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12936] = 2,
ACTIONS(757), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12951] = 2,
ACTIONS(753), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[12966] = 2,
ACTIONS(773), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[12981] = 2,
ACTIONS(705), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[12996] = 2,
ACTIONS(713), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13011] = 2,
ACTIONS(717), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13026] = 2,
ACTIONS(721), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13041] = 2,
ACTIONS(725), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(727), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13056] = 2,
ACTIONS(729), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13071] = 2,
ACTIONS(733), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13086] = 2,
ACTIONS(737), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13101] = 2,
ACTIONS(853), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13116] = 2,
ACTIONS(849), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13131] = 2,
ACTIONS(845), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13146] = 2,
ACTIONS(841), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13161] = 2,
ACTIONS(837), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13176] = 2,
ACTIONS(697), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13191] = 2,
ACTIONS(725), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(727), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13206] = 2,
ACTIONS(829), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13221] = 2,
ACTIONS(821), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13236] = 2,
ACTIONS(817), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13251] = 2,
ACTIONS(857), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(859), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
2021-07-01 07:36:35 -04:00
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13266] = 2,
ACTIONS(829), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 6,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13281] = 2,
ACTIONS(805), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13296] = 2,
ACTIONS(801), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13311] = 2,
ACTIONS(797), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 7,
2021-06-17 16:32:18 -04:00
sym_if,
sym_foreach,
2021-06-17 16:43:12 -04:00
sym_while,
2021-06-17 17:06:32 -04:00
sym_function,
sym_endfunction,
2021-06-17 17:06:32 -04:00
sym_macro,
2021-06-17 16:32:18 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13326] = 2,
ACTIONS(773), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13341] = 2,
ACTIONS(833), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13356] = 2,
ACTIONS(813), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13371] = 2,
ACTIONS(809), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13386] = 2,
ACTIONS(789), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13401] = 2,
ACTIONS(785), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13416] = 2,
ACTIONS(765), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13431] = 2,
ACTIONS(761), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13446] = 2,
ACTIONS(757), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13461] = 2,
ACTIONS(753), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13476] = 2,
ACTIONS(773), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13491] = 2,
ACTIONS(705), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13506] = 2,
ACTIONS(713), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13521] = 2,
ACTIONS(717), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13536] = 2,
ACTIONS(721), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13551] = 2,
ACTIONS(725), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(727), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13566] = 2,
ACTIONS(729), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13581] = 2,
ACTIONS(733), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13596] = 2,
ACTIONS(737), 3,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 7,
2021-06-30 01:40:33 -04:00
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13611] = 2,
ACTIONS(853), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13626] = 2,
ACTIONS(849), 3,
2021-06-30 01:40:33 -04:00
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 7,
2021-06-30 01:40:33 -04:00
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
2021-06-30 01:40:33 -04:00
sym_identifier,
2021-07-01 07:36:35 -04:00
[13641] = 2,
ACTIONS(845), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13656] = 2,
ACTIONS(841), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13671] = 2,
ACTIONS(837), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13686] = 2,
ACTIONS(829), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13701] = 2,
ACTIONS(821), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13716] = 2,
ACTIONS(817), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13731] = 2,
ACTIONS(805), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13746] = 2,
ACTIONS(801), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13761] = 2,
ACTIONS(797), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13776] = 2,
ACTIONS(697), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13791] = 2,
ACTIONS(753), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13806] = 2,
ACTIONS(845), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(847), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13821] = 2,
ACTIONS(761), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13836] = 2,
ACTIONS(765), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13851] = 2,
ACTIONS(737), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13866] = 2,
ACTIONS(861), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(863), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13881] = 2,
ACTIONS(785), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13896] = 2,
ACTIONS(789), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13911] = 2,
ACTIONS(809), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13926] = 2,
ACTIONS(813), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13941] = 2,
ACTIONS(833), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13956] = 2,
ACTIONS(697), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(699), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13971] = 2,
ACTIONS(797), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[13986] = 2,
ACTIONS(801), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14001] = 2,
ACTIONS(833), 4,
sym_bracket_comment,
sym_line_comment,
2021-06-30 01:40:33 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14016] = 2,
ACTIONS(805), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 7,
sym_if,
sym_foreach,
2021-06-30 01:40:33 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14031] = 2,
ACTIONS(813), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14046] = 2,
ACTIONS(865), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(867), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14061] = 2,
ACTIONS(853), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14076] = 2,
ACTIONS(809), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14091] = 2,
ACTIONS(789), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14106] = 2,
ACTIONS(817), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14121] = 2,
ACTIONS(785), 4,
sym_bracket_comment,
sym_line_comment,
2021-06-30 01:40:33 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14136] = 2,
ACTIONS(869), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(871), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14151] = 2,
ACTIONS(821), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14166] = 2,
ACTIONS(873), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(875), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14181] = 2,
ACTIONS(829), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14196] = 2,
ACTIONS(849), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14211] = 2,
ACTIONS(837), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14226] = 2,
ACTIONS(841), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(843), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14241] = 2,
ACTIONS(877), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(879), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14256] = 2,
ACTIONS(705), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14271] = 2,
ACTIONS(765), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14286] = 2,
ACTIONS(849), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(851), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14301] = 2,
ACTIONS(881), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(883), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
2021-06-30 01:40:33 -04:00
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14316] = 2,
ACTIONS(765), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(767), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14331] = 2,
ACTIONS(761), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14346] = 2,
ACTIONS(757), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14361] = 2,
ACTIONS(753), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14376] = 2,
ACTIONS(773), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14391] = 2,
ACTIONS(853), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14406] = 2,
ACTIONS(737), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(739), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14421] = 2,
ACTIONS(705), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14436] = 2,
ACTIONS(733), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14451] = 2,
ACTIONS(729), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14466] = 2,
ACTIONS(725), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(727), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14481] = 2,
ACTIONS(721), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14496] = 2,
ACTIONS(717), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14511] = 2,
ACTIONS(713), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14526] = 2,
ACTIONS(885), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(887), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14541] = 2,
ACTIONS(705), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(707), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14556] = 2,
ACTIONS(773), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(775), 7,
sym_if,
sym_foreach,
2021-06-30 01:40:33 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14571] = 2,
ACTIONS(753), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(755), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14586] = 2,
ACTIONS(757), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(759), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14601] = 2,
ACTIONS(889), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(891), 7,
sym_if,
sym_foreach,
sym_while,
2021-07-01 07:36:35 -04:00
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14616] = 2,
ACTIONS(761), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(763), 7,
sym_if,
sym_foreach,
2021-06-30 01:40:33 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14631] = 2,
ACTIONS(893), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(895), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
2021-07-01 07:36:35 -04:00
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14646] = 2,
ACTIONS(733), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(735), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14661] = 2,
ACTIONS(821), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(823), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14676] = 2,
ACTIONS(897), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(899), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
2021-07-01 07:36:35 -04:00
sym_endmacro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14691] = 2,
ACTIONS(817), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(819), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14706] = 2,
ACTIONS(713), 4,
sym_bracket_comment,
sym_line_comment,
2021-06-30 01:40:33 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(715), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14721] = 2,
ACTIONS(717), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(719), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14736] = 2,
ACTIONS(721), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(723), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14751] = 2,
ACTIONS(805), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(807), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14766] = 2,
ACTIONS(785), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14781] = 2,
ACTIONS(789), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(791), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14796] = 2,
ACTIONS(809), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(811), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14811] = 2,
ACTIONS(813), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(815), 7,
sym_if,
sym_foreach,
2021-07-01 07:36:35 -04:00
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14826] = 2,
ACTIONS(901), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(903), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
2021-07-01 07:36:35 -04:00
sym_endfunction,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14841] = 2,
ACTIONS(729), 4,
sym_bracket_comment,
sym_line_comment,
2021-07-01 07:36:35 -04:00
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(731), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14856] = 2,
ACTIONS(833), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
2021-07-01 07:36:35 -04:00
[14871] = 2,
ACTIONS(667), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(665), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[14884] = 2,
ACTIONS(683), 1,
aux_sym_quoted_element_token1,
ACTIONS(681), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[14897] = 2,
ACTIONS(675), 1,
aux_sym_quoted_element_token1,
ACTIONS(673), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[14910] = 2,
ACTIONS(695), 1,
aux_sym_quoted_element_token1,
ACTIONS(693), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[14923] = 2,
ACTIONS(663), 1,
aux_sym_quoted_element_token1,
ACTIONS(661), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_DQUOTE,
[14936] = 2,
ACTIONS(667), 1,
aux_sym_quoted_element_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(665), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
[14949] = 1,
ACTIONS(681), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
2021-07-01 07:36:35 -04:00
aux_sym_variable_token1,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_RBRACE,
[14960] = 2,
ACTIONS(663), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(661), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_RPAREN,
[14973] = 2,
ACTIONS(695), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(693), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_RPAREN,
[14986] = 1,
ACTIONS(673), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[14997] = 2,
ACTIONS(667), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(665), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
[15010] = 2,
ACTIONS(663), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(661), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
[15023] = 2,
ACTIONS(675), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(673), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_RPAREN,
[15036] = 2,
ACTIONS(683), 1,
aux_sym_unquoted_argument_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(681), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
anon_sym_RPAREN,
[15049] = 2,
ACTIONS(695), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(693), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
[15062] = 2,
ACTIONS(675), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(673), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
[15075] = 2,
ACTIONS(683), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(681), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR,
2021-07-01 07:36:35 -04:00
[15088] = 1,
ACTIONS(665), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[15099] = 1,
ACTIONS(661), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[15110] = 1,
ACTIONS(693), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[15121] = 3,
ACTIONS(905), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(907), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(508), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15131] = 3,
ACTIONS(909), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(911), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(517), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15141] = 3,
ACTIONS(913), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(915), 1,
aux_sym_if_command_token1,
STATE(473), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15151] = 3,
ACTIONS(917), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(919), 1,
aux_sym_if_command_token1,
STATE(475), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15161] = 3,
ACTIONS(921), 1,
anon_sym_LPAREN,
ACTIONS(923), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(476), 1,
aux_sym_if_command_repeat1,
[15171] = 3,
ACTIONS(925), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(927), 1,
aux_sym_if_command_token1,
STATE(477), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15181] = 3,
ACTIONS(929), 1,
anon_sym_LPAREN,
ACTIONS(931), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(478), 1,
aux_sym_if_command_repeat1,
[15191] = 3,
ACTIONS(933), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(935), 1,
aux_sym_if_command_token1,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15201] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(937), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15211] = 3,
ACTIONS(939), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
ACTIONS(941), 1,
anon_sym_ENV,
2021-07-01 07:36:35 -04:00
ACTIONS(943), 1,
anon_sym_CACHE,
2021-07-01 07:36:35 -04:00
[15221] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(945), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15231] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(947), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15241] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(949), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15251] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(951), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15261] = 3,
ACTIONS(953), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
ACTIONS(955), 1,
anon_sym_ENV,
2021-07-01 07:36:35 -04:00
ACTIONS(957), 1,
anon_sym_CACHE,
2021-07-01 07:36:35 -04:00
[15271] = 3,
ACTIONS(959), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(961), 1,
aux_sym_if_command_token1,
STATE(512), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15281] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(963), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15291] = 3,
ACTIONS(965), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(967), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(548), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15301] = 3,
ACTIONS(969), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(971), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(555), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15311] = 3,
ACTIONS(973), 1,
anon_sym_LPAREN,
ACTIONS(975), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(510), 1,
aux_sym_if_command_repeat1,
[15321] = 3,
ACTIONS(977), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(979), 1,
aux_sym_if_command_token1,
STATE(552), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15331] = 3,
ACTIONS(981), 1,
anon_sym_LPAREN,
ACTIONS(983), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(524), 1,
aux_sym_if_command_repeat1,
[15341] = 3,
ACTIONS(985), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(987), 1,
aux_sym_if_command_token1,
STATE(481), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15351] = 3,
ACTIONS(989), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
ACTIONS(991), 1,
anon_sym_ENV,
2021-07-01 07:36:35 -04:00
ACTIONS(993), 1,
anon_sym_CACHE,
2021-07-01 07:36:35 -04:00
[15361] = 3,
ACTIONS(995), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(997), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(550), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15371] = 3,
ACTIONS(999), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1001), 1,
aux_sym_if_command_token1,
STATE(544), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15381] = 3,
ACTIONS(1003), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
ACTIONS(1005), 1,
anon_sym_ENV,
2021-07-01 07:36:35 -04:00
ACTIONS(1007), 1,
anon_sym_CACHE,
2021-07-01 07:36:35 -04:00
[15391] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1009), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15401] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1011), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15411] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1013), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15421] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1015), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15431] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1017), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15441] = 3,
ACTIONS(1019), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1021), 1,
aux_sym_if_command_token1,
STATE(492), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15451] = 3,
ACTIONS(1023), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1025), 1,
aux_sym_if_command_token1,
STATE(493), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15461] = 3,
ACTIONS(1027), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1029), 1,
aux_sym_if_command_token1,
STATE(494), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15471] = 3,
ACTIONS(1031), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1033), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(495), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15481] = 3,
ACTIONS(1035), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1037), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(496), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15491] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1039), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15501] = 3,
ACTIONS(1041), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1043), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(502), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15511] = 3,
ACTIONS(1045), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1047), 1,
aux_sym_if_command_token1,
STATE(542), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15521] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1049), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15531] = 3,
ACTIONS(1051), 1,
anon_sym_LPAREN,
ACTIONS(1053), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(538), 1,
aux_sym_if_command_repeat1,
[15541] = 3,
ACTIONS(1055), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1057), 1,
aux_sym_if_command_token1,
STATE(505), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15551] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1059), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15561] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1061), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15571] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1063), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15581] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1065), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15591] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1067), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15601] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1069), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15611] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1071), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15621] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1073), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15631] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1075), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15641] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1077), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15651] = 3,
ACTIONS(1079), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1081), 1,
aux_sym_if_command_token1,
STATE(509), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15661] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1083), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15671] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1085), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15681] = 3,
ACTIONS(1087), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1089), 1,
aux_sym_if_command_token1,
STATE(511), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15691] = 3,
ACTIONS(1091), 1,
anon_sym_LPAREN,
ACTIONS(1093), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(515), 1,
aux_sym_if_command_repeat1,
[15701] = 3,
ACTIONS(1095), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1097), 1,
aux_sym_if_command_token1,
STATE(516), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15711] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1099), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15721] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1101), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15731] = 3,
ACTIONS(1103), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1105), 1,
aux_sym_if_command_token1,
STATE(525), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15741] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1107), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15751] = 3,
ACTIONS(1109), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
ACTIONS(1111), 1,
anon_sym_ENV,
2021-07-01 07:36:35 -04:00
ACTIONS(1113), 1,
anon_sym_CACHE,
2021-07-01 07:36:35 -04:00
[15761] = 3,
ACTIONS(1115), 1,
anon_sym_LPAREN,
ACTIONS(1117), 1,
2021-07-01 07:36:35 -04:00
aux_sym_if_command_token1,
STATE(472), 1,
aux_sym_if_command_repeat1,
[15771] = 3,
ACTIONS(1119), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1121), 1,
aux_sym_if_command_token1,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15781] = 3,
ACTIONS(1124), 1,
anon_sym_LPAREN,
ACTIONS(1126), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(513), 1,
aux_sym_if_command_repeat1,
[15791] = 3,
ACTIONS(1128), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1130), 1,
aux_sym_if_command_token1,
STATE(514), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15801] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1132), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15811] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1134), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15821] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1136), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15831] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1138), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15841] = 3,
ACTIONS(1140), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1142), 1,
aux_sym_if_command_token1,
STATE(519), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15851] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1144), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15861] = 3,
ACTIONS(1146), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1148), 1,
aux_sym_if_command_token1,
STATE(520), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15871] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1150), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15881] = 3,
ACTIONS(1152), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1154), 1,
aux_sym_if_command_token1,
STATE(527), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15891] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1156), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15901] = 3,
ACTIONS(1158), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1160), 1,
aux_sym_if_command_token1,
STATE(533), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15911] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1162), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15921] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1164), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15931] = 3,
ACTIONS(1166), 1,
anon_sym_LPAREN,
ACTIONS(1168), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(534), 1,
aux_sym_if_command_repeat1,
[15941] = 3,
ACTIONS(1170), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1172), 1,
aux_sym_if_command_token1,
STATE(545), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15951] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1174), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15961] = 3,
ACTIONS(1176), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1178), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(535), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15971] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1180), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15981] = 3,
ACTIONS(1182), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1184), 1,
aux_sym_if_command_token1,
STATE(536), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[15991] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1186), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[16001] = 3,
ACTIONS(1188), 1,
anon_sym_LPAREN,
ACTIONS(1190), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
STATE(540), 1,
aux_sym_if_command_repeat1,
[16011] = 3,
ACTIONS(1192), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1194), 1,
aux_sym_if_command_token1,
STATE(556), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[16021] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
2021-07-01 07:36:35 -04:00
ACTIONS(1196), 1,
anon_sym_LPAREN,
2021-07-01 07:36:35 -04:00
STATE(530), 1,
aux_sym_if_command_repeat1,
2021-07-01 07:36:35 -04:00
[16031] = 3,
ACTIONS(935), 1,
aux_sym_if_command_token1,
ACTIONS(1198), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
[16041] = 2,
ACTIONS(1200), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1202), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16048] = 2,
ACTIONS(1204), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1206), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16055] = 2,
ACTIONS(1208), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1210), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16062] = 2,
ACTIONS(1212), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1214), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16069] = 2,
ACTIONS(1216), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1218), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16076] = 2,
ACTIONS(1220), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1222), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16083] = 2,
ACTIONS(1224), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1226), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16090] = 2,
ACTIONS(1228), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1230), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16097] = 2,
ACTIONS(1232), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1234), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16104] = 2,
ACTIONS(1236), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1238), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16111] = 2,
ACTIONS(1240), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1242), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16118] = 2,
ACTIONS(1244), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1246), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16125] = 2,
ACTIONS(1248), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1250), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16132] = 2,
ACTIONS(1252), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1254), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16139] = 2,
ACTIONS(1256), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1258), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16146] = 2,
ACTIONS(1260), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1262), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16153] = 2,
ACTIONS(1264), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1266), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16160] = 2,
ACTIONS(1268), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1270), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16167] = 2,
ACTIONS(1272), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1274), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16174] = 2,
ACTIONS(1276), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1278), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16181] = 2,
ACTIONS(1280), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1282), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16188] = 2,
ACTIONS(1284), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1286), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16195] = 2,
ACTIONS(1288), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1290), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16202] = 2,
ACTIONS(1292), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1294), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16209] = 2,
ACTIONS(1296), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1298), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16216] = 2,
ACTIONS(1300), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
ACTIONS(1302), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16223] = 1,
ACTIONS(1304), 1,
anon_sym_RBRACE,
[16227] = 1,
ACTIONS(1306), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16231] = 1,
ACTIONS(1308), 1,
aux_sym_else_command_token1,
[16235] = 1,
ACTIONS(1310), 1,
aux_sym_else_command_token1,
[16239] = 1,
ACTIONS(1312), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16243] = 1,
ACTIONS(1314), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16247] = 1,
ACTIONS(1316), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16251] = 1,
ACTIONS(1318), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16255] = 1,
ACTIONS(1320), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16259] = 1,
ACTIONS(1322), 1,
anon_sym_RPAREN,
[16263] = 1,
ACTIONS(1324), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16267] = 1,
ACTIONS(1326), 1,
anon_sym_RPAREN,
[16271] = 1,
ACTIONS(1328), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16275] = 1,
ACTIONS(1330), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16279] = 1,
ACTIONS(1332), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16283] = 1,
ACTIONS(1334), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16287] = 1,
ACTIONS(1336), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16291] = 1,
ACTIONS(1338), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16295] = 1,
ACTIONS(1340), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16299] = 1,
ACTIONS(1342), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16303] = 1,
ACTIONS(1344), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16307] = 1,
ACTIONS(1346), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16311] = 1,
ACTIONS(553), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16315] = 1,
ACTIONS(1348), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16319] = 1,
ACTIONS(685), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16323] = 1,
ACTIONS(1350), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16327] = 1,
ACTIONS(1352), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16331] = 1,
ACTIONS(1354), 1,
anon_sym_RPAREN,
[16335] = 1,
ACTIONS(1356), 1,
anon_sym_DQUOTE,
[16339] = 1,
ACTIONS(1358), 1,
anon_sym_DQUOTE,
[16343] = 1,
ACTIONS(557), 1,
anon_sym_RPAREN,
[16347] = 1,
ACTIONS(1360), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16351] = 1,
ACTIONS(1362), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16355] = 1,
ACTIONS(1364), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16359] = 1,
ACTIONS(1366), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16363] = 1,
ACTIONS(565), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16367] = 1,
ACTIONS(689), 1,
aux_sym_else_command_token1,
[16371] = 1,
ACTIONS(1368), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16375] = 1,
ACTIONS(1370), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16379] = 1,
ACTIONS(1372), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16383] = 1,
ACTIONS(1374), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16387] = 1,
ACTIONS(1376), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16391] = 1,
ACTIONS(669), 1,
aux_sym_else_command_token1,
[16395] = 1,
ACTIONS(1378), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16399] = 1,
ACTIONS(1380), 1,
anon_sym_RBRACE,
[16403] = 1,
ACTIONS(561), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16407] = 1,
ACTIONS(569), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16411] = 1,
ACTIONS(1382), 1,
anon_sym_RBRACE,
[16415] = 1,
ACTIONS(1384), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16419] = 1,
ACTIONS(1386), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16423] = 1,
ACTIONS(1388), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16427] = 1,
ACTIONS(1390), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16431] = 1,
ACTIONS(1392), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16435] = 1,
ACTIONS(1394), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16439] = 1,
ACTIONS(1396), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16443] = 1,
ACTIONS(1398), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16447] = 1,
ACTIONS(1400), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16451] = 1,
ACTIONS(1402), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16455] = 1,
ACTIONS(1404), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16459] = 1,
ACTIONS(1406), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16463] = 1,
ACTIONS(1408), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16467] = 1,
ACTIONS(1410), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16471] = 1,
ACTIONS(1412), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16475] = 1,
ACTIONS(1414), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16479] = 1,
ACTIONS(1416), 1,
anon_sym_RPAREN,
[16483] = 1,
ACTIONS(1418), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16487] = 1,
ACTIONS(1420), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16491] = 1,
ACTIONS(1422), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16495] = 1,
ACTIONS(1424), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16499] = 1,
ACTIONS(1426), 1,
aux_sym_else_command_token1,
[16503] = 1,
ACTIONS(1428), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16507] = 1,
ACTIONS(1430), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16511] = 1,
ACTIONS(1432), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16515] = 1,
ACTIONS(1434), 1,
anon_sym_DQUOTE,
2021-07-01 07:36:35 -04:00
[16519] = 1,
ACTIONS(1436), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16523] = 1,
ACTIONS(1438), 1,
anon_sym_RPAREN,
[16527] = 1,
ACTIONS(1440), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16531] = 1,
ACTIONS(1442), 1,
aux_sym_else_command_token1,
[16535] = 1,
ACTIONS(1444), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16539] = 1,
ACTIONS(1446), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16543] = 1,
ACTIONS(1448), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16547] = 1,
ACTIONS(1450), 1,
aux_sym_else_command_token1,
2021-07-01 07:36:35 -04:00
[16551] = 1,
ACTIONS(559), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16555] = 1,
ACTIONS(1452), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16559] = 1,
ACTIONS(1454), 1,
anon_sym_RPAREN,
[16563] = 1,
ACTIONS(1456), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16567] = 1,
ACTIONS(1458), 1,
2021-06-30 01:40:33 -04:00
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16571] = 1,
ACTIONS(1460), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16575] = 1,
ACTIONS(689), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16579] = 1,
ACTIONS(669), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16583] = 1,
ACTIONS(677), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16587] = 1,
ACTIONS(685), 1,
2021-06-30 01:40:33 -04:00
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16591] = 1,
ACTIONS(1462), 1,
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16595] = 1,
ACTIONS(1464), 1,
2021-06-30 01:40:33 -04:00
anon_sym_LBRACE,
2021-07-01 07:36:35 -04:00
[16599] = 1,
ACTIONS(1466), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16603] = 1,
ACTIONS(1468), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16607] = 1,
ACTIONS(1470), 1,
ts_builtin_sym_end,
2021-07-01 07:36:35 -04:00
[16611] = 1,
ACTIONS(1472), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16615] = 1,
ACTIONS(1474), 1,
anon_sym_RPAREN,
2021-07-01 07:36:35 -04:00
[16619] = 1,
ACTIONS(1476), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16623] = 1,
ACTIONS(1478), 1,
anon_sym_RBRACE,
2021-07-01 07:36:35 -04:00
[16627] = 1,
ACTIONS(1480), 1,
anon_sym_RPAREN,
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 64,
[SMALL_STATE(4)] = 128,
[SMALL_STATE(5)] = 192,
[SMALL_STATE(6)] = 256,
[SMALL_STATE(7)] = 320,
[SMALL_STATE(8)] = 384,
[SMALL_STATE(9)] = 448,
[SMALL_STATE(10)] = 512,
[SMALL_STATE(11)] = 576,
[SMALL_STATE(12)] = 640,
[SMALL_STATE(13)] = 704,
[SMALL_STATE(14)] = 768,
[SMALL_STATE(15)] = 829,
2021-07-01 07:36:35 -04:00
[SMALL_STATE(16)] = 883,
[SMALL_STATE(17)] = 937,
[SMALL_STATE(18)] = 991,
[SMALL_STATE(19)] = 1045,
[SMALL_STATE(20)] = 1099,
[SMALL_STATE(21)] = 1153,
[SMALL_STATE(22)] = 1207,
[SMALL_STATE(23)] = 1261,
[SMALL_STATE(24)] = 1315,
[SMALL_STATE(25)] = 1369,
[SMALL_STATE(26)] = 1423,
[SMALL_STATE(27)] = 1477,
[SMALL_STATE(28)] = 1531,
[SMALL_STATE(29)] = 1585,
[SMALL_STATE(30)] = 1639,
[SMALL_STATE(31)] = 1693,
[SMALL_STATE(32)] = 1747,
[SMALL_STATE(33)] = 1801,
[SMALL_STATE(34)] = 1855,
[SMALL_STATE(35)] = 1909,
[SMALL_STATE(36)] = 1963,
[SMALL_STATE(37)] = 2017,
[SMALL_STATE(38)] = 2071,
[SMALL_STATE(39)] = 2125,
[SMALL_STATE(40)] = 2179,
[SMALL_STATE(41)] = 2233,
[SMALL_STATE(42)] = 2287,
[SMALL_STATE(43)] = 2341,
[SMALL_STATE(44)] = 2395,
[SMALL_STATE(45)] = 2449,
[SMALL_STATE(46)] = 2503,
[SMALL_STATE(47)] = 2557,
[SMALL_STATE(48)] = 2611,
[SMALL_STATE(49)] = 2665,
[SMALL_STATE(50)] = 2719,
[SMALL_STATE(51)] = 2773,
[SMALL_STATE(52)] = 2827,
[SMALL_STATE(53)] = 2881,
[SMALL_STATE(54)] = 2935,
[SMALL_STATE(55)] = 2989,
[SMALL_STATE(56)] = 3043,
[SMALL_STATE(57)] = 3097,
[SMALL_STATE(58)] = 3151,
[SMALL_STATE(59)] = 3205,
[SMALL_STATE(60)] = 3259,
[SMALL_STATE(61)] = 3313,
[SMALL_STATE(62)] = 3367,
[SMALL_STATE(63)] = 3421,
[SMALL_STATE(64)] = 3475,
[SMALL_STATE(65)] = 3529,
[SMALL_STATE(66)] = 3583,
[SMALL_STATE(67)] = 3637,
[SMALL_STATE(68)] = 3691,
[SMALL_STATE(69)] = 3745,
[SMALL_STATE(70)] = 3799,
[SMALL_STATE(71)] = 3853,
[SMALL_STATE(72)] = 3907,
[SMALL_STATE(73)] = 3961,
[SMALL_STATE(74)] = 4015,
[SMALL_STATE(75)] = 4069,
[SMALL_STATE(76)] = 4123,
[SMALL_STATE(77)] = 4177,
[SMALL_STATE(78)] = 4231,
[SMALL_STATE(79)] = 4285,
[SMALL_STATE(80)] = 4339,
[SMALL_STATE(81)] = 4393,
[SMALL_STATE(82)] = 4447,
[SMALL_STATE(83)] = 4501,
[SMALL_STATE(84)] = 4555,
[SMALL_STATE(85)] = 4609,
[SMALL_STATE(86)] = 4663,
[SMALL_STATE(87)] = 4717,
[SMALL_STATE(88)] = 4771,
[SMALL_STATE(89)] = 4825,
[SMALL_STATE(90)] = 4879,
[SMALL_STATE(91)] = 4933,
[SMALL_STATE(92)] = 4987,
[SMALL_STATE(93)] = 5041,
[SMALL_STATE(94)] = 5095,
[SMALL_STATE(95)] = 5149,
[SMALL_STATE(96)] = 5203,
[SMALL_STATE(97)] = 5257,
[SMALL_STATE(98)] = 5311,
[SMALL_STATE(99)] = 5365,
[SMALL_STATE(100)] = 5419,
[SMALL_STATE(101)] = 5473,
[SMALL_STATE(102)] = 5527,
[SMALL_STATE(103)] = 5581,
[SMALL_STATE(104)] = 5635,
[SMALL_STATE(105)] = 5689,
[SMALL_STATE(106)] = 5743,
[SMALL_STATE(107)] = 5797,
[SMALL_STATE(108)] = 5851,
[SMALL_STATE(109)] = 5905,
[SMALL_STATE(110)] = 5959,
[SMALL_STATE(111)] = 6013,
[SMALL_STATE(112)] = 6067,
[SMALL_STATE(113)] = 6123,
[SMALL_STATE(114)] = 6179,
[SMALL_STATE(115)] = 6235,
[SMALL_STATE(116)] = 6291,
[SMALL_STATE(117)] = 6347,
[SMALL_STATE(118)] = 6403,
[SMALL_STATE(119)] = 6459,
[SMALL_STATE(120)] = 6515,
[SMALL_STATE(121)] = 6571,
[SMALL_STATE(122)] = 6627,
[SMALL_STATE(123)] = 6683,
[SMALL_STATE(124)] = 6739,
[SMALL_STATE(125)] = 6795,
[SMALL_STATE(126)] = 6851,
[SMALL_STATE(127)] = 6907,
[SMALL_STATE(128)] = 6963,
[SMALL_STATE(129)] = 7019,
[SMALL_STATE(130)] = 7075,
[SMALL_STATE(131)] = 7131,
[SMALL_STATE(132)] = 7187,
[SMALL_STATE(133)] = 7243,
[SMALL_STATE(134)] = 7293,
[SMALL_STATE(135)] = 7349,
[SMALL_STATE(136)] = 7405,
[SMALL_STATE(137)] = 7461,
[SMALL_STATE(138)] = 7517,
[SMALL_STATE(139)] = 7573,
[SMALL_STATE(140)] = 7629,
[SMALL_STATE(141)] = 7685,
[SMALL_STATE(142)] = 7741,
[SMALL_STATE(143)] = 7797,
[SMALL_STATE(144)] = 7847,
[SMALL_STATE(145)] = 7903,
[SMALL_STATE(146)] = 7959,
[SMALL_STATE(147)] = 8015,
[SMALL_STATE(148)] = 8071,
[SMALL_STATE(149)] = 8127,
[SMALL_STATE(150)] = 8183,
[SMALL_STATE(151)] = 8239,
[SMALL_STATE(152)] = 8295,
[SMALL_STATE(153)] = 8351,
[SMALL_STATE(154)] = 8407,
[SMALL_STATE(155)] = 8463,
[SMALL_STATE(156)] = 8519,
[SMALL_STATE(157)] = 8575,
[SMALL_STATE(158)] = 8631,
[SMALL_STATE(159)] = 8687,
[SMALL_STATE(160)] = 8743,
[SMALL_STATE(161)] = 8799,
[SMALL_STATE(162)] = 8855,
[SMALL_STATE(163)] = 8908,
[SMALL_STATE(164)] = 8961,
[SMALL_STATE(165)] = 9014,
[SMALL_STATE(166)] = 9067,
[SMALL_STATE(167)] = 9120,
[SMALL_STATE(168)] = 9173,
[SMALL_STATE(169)] = 9209,
[SMALL_STATE(170)] = 9245,
[SMALL_STATE(171)] = 9288,
[SMALL_STATE(172)] = 9331,
[SMALL_STATE(173)] = 9374,
[SMALL_STATE(174)] = 9417,
[SMALL_STATE(175)] = 9460,
[SMALL_STATE(176)] = 9503,
[SMALL_STATE(177)] = 9546,
[SMALL_STATE(178)] = 9589,
[SMALL_STATE(179)] = 9632,
[SMALL_STATE(180)] = 9675,
[SMALL_STATE(181)] = 9718,
[SMALL_STATE(182)] = 9761,
[SMALL_STATE(183)] = 9801,
[SMALL_STATE(184)] = 9841,
[SMALL_STATE(185)] = 9881,
[SMALL_STATE(186)] = 9921,
[SMALL_STATE(187)] = 9961,
[SMALL_STATE(188)] = 10001,
[SMALL_STATE(189)] = 10041,
[SMALL_STATE(190)] = 10081,
[SMALL_STATE(191)] = 10121,
[SMALL_STATE(192)] = 10161,
[SMALL_STATE(193)] = 10201,
[SMALL_STATE(194)] = 10241,
[SMALL_STATE(195)] = 10281,
[SMALL_STATE(196)] = 10321,
[SMALL_STATE(197)] = 10361,
[SMALL_STATE(198)] = 10401,
[SMALL_STATE(199)] = 10441,
[SMALL_STATE(200)] = 10481,
[SMALL_STATE(201)] = 10521,
[SMALL_STATE(202)] = 10561,
[SMALL_STATE(203)] = 10601,
[SMALL_STATE(204)] = 10641,
[SMALL_STATE(205)] = 10681,
[SMALL_STATE(206)] = 10721,
[SMALL_STATE(207)] = 10761,
[SMALL_STATE(208)] = 10801,
[SMALL_STATE(209)] = 10834,
[SMALL_STATE(210)] = 10867,
[SMALL_STATE(211)] = 10900,
[SMALL_STATE(212)] = 10930,
[SMALL_STATE(213)] = 10960,
[SMALL_STATE(214)] = 10990,
[SMALL_STATE(215)] = 11020,
[SMALL_STATE(216)] = 11050,
[SMALL_STATE(217)] = 11080,
[SMALL_STATE(218)] = 11110,
[SMALL_STATE(219)] = 11140,
[SMALL_STATE(220)] = 11170,
[SMALL_STATE(221)] = 11200,
[SMALL_STATE(222)] = 11230,
[SMALL_STATE(223)] = 11260,
[SMALL_STATE(224)] = 11290,
[SMALL_STATE(225)] = 11320,
[SMALL_STATE(226)] = 11350,
[SMALL_STATE(227)] = 11380,
[SMALL_STATE(228)] = 11410,
[SMALL_STATE(229)] = 11440,
[SMALL_STATE(230)] = 11470,
[SMALL_STATE(231)] = 11500,
[SMALL_STATE(232)] = 11530,
[SMALL_STATE(233)] = 11560,
[SMALL_STATE(234)] = 11590,
[SMALL_STATE(235)] = 11609,
[SMALL_STATE(236)] = 11628,
[SMALL_STATE(237)] = 11647,
[SMALL_STATE(238)] = 11666,
[SMALL_STATE(239)] = 11685,
[SMALL_STATE(240)] = 11704,
[SMALL_STATE(241)] = 11723,
[SMALL_STATE(242)] = 11742,
[SMALL_STATE(243)] = 11761,
[SMALL_STATE(244)] = 11778,
[SMALL_STATE(245)] = 11795,
[SMALL_STATE(246)] = 11812,
[SMALL_STATE(247)] = 11829,
[SMALL_STATE(248)] = 11846,
[SMALL_STATE(249)] = 11863,
[SMALL_STATE(250)] = 11880,
[SMALL_STATE(251)] = 11897,
[SMALL_STATE(252)] = 11914,
[SMALL_STATE(253)] = 11931,
[SMALL_STATE(254)] = 11948,
[SMALL_STATE(255)] = 11965,
[SMALL_STATE(256)] = 11982,
[SMALL_STATE(257)] = 11999,
[SMALL_STATE(258)] = 12016,
[SMALL_STATE(259)] = 12033,
[SMALL_STATE(260)] = 12050,
[SMALL_STATE(261)] = 12067,
[SMALL_STATE(262)] = 12084,
[SMALL_STATE(263)] = 12101,
[SMALL_STATE(264)] = 12118,
[SMALL_STATE(265)] = 12135,
[SMALL_STATE(266)] = 12152,
[SMALL_STATE(267)] = 12169,
[SMALL_STATE(268)] = 12186,
[SMALL_STATE(269)] = 12203,
[SMALL_STATE(270)] = 12220,
[SMALL_STATE(271)] = 12237,
[SMALL_STATE(272)] = 12254,
[SMALL_STATE(273)] = 12271,
[SMALL_STATE(274)] = 12288,
[SMALL_STATE(275)] = 12305,
[SMALL_STATE(276)] = 12322,
[SMALL_STATE(277)] = 12339,
[SMALL_STATE(278)] = 12356,
[SMALL_STATE(279)] = 12373,
[SMALL_STATE(280)] = 12390,
[SMALL_STATE(281)] = 12407,
[SMALL_STATE(282)] = 12424,
[SMALL_STATE(283)] = 12441,
[SMALL_STATE(284)] = 12456,
[SMALL_STATE(285)] = 12471,
[SMALL_STATE(286)] = 12486,
[SMALL_STATE(287)] = 12501,
[SMALL_STATE(288)] = 12516,
[SMALL_STATE(289)] = 12531,
[SMALL_STATE(290)] = 12546,
[SMALL_STATE(291)] = 12561,
[SMALL_STATE(292)] = 12576,
[SMALL_STATE(293)] = 12591,
[SMALL_STATE(294)] = 12606,
[SMALL_STATE(295)] = 12621,
[SMALL_STATE(296)] = 12636,
[SMALL_STATE(297)] = 12651,
[SMALL_STATE(298)] = 12666,
[SMALL_STATE(299)] = 12681,
[SMALL_STATE(300)] = 12696,
[SMALL_STATE(301)] = 12711,
[SMALL_STATE(302)] = 12726,
[SMALL_STATE(303)] = 12741,
[SMALL_STATE(304)] = 12756,
[SMALL_STATE(305)] = 12771,
[SMALL_STATE(306)] = 12786,
[SMALL_STATE(307)] = 12801,
[SMALL_STATE(308)] = 12816,
[SMALL_STATE(309)] = 12831,
[SMALL_STATE(310)] = 12846,
[SMALL_STATE(311)] = 12861,
[SMALL_STATE(312)] = 12876,
[SMALL_STATE(313)] = 12891,
[SMALL_STATE(314)] = 12906,
[SMALL_STATE(315)] = 12921,
[SMALL_STATE(316)] = 12936,
[SMALL_STATE(317)] = 12951,
[SMALL_STATE(318)] = 12966,
[SMALL_STATE(319)] = 12981,
[SMALL_STATE(320)] = 12996,
[SMALL_STATE(321)] = 13011,
[SMALL_STATE(322)] = 13026,
[SMALL_STATE(323)] = 13041,
[SMALL_STATE(324)] = 13056,
[SMALL_STATE(325)] = 13071,
[SMALL_STATE(326)] = 13086,
[SMALL_STATE(327)] = 13101,
[SMALL_STATE(328)] = 13116,
[SMALL_STATE(329)] = 13131,
[SMALL_STATE(330)] = 13146,
[SMALL_STATE(331)] = 13161,
[SMALL_STATE(332)] = 13176,
[SMALL_STATE(333)] = 13191,
[SMALL_STATE(334)] = 13206,
[SMALL_STATE(335)] = 13221,
[SMALL_STATE(336)] = 13236,
[SMALL_STATE(337)] = 13251,
[SMALL_STATE(338)] = 13266,
[SMALL_STATE(339)] = 13281,
[SMALL_STATE(340)] = 13296,
[SMALL_STATE(341)] = 13311,
[SMALL_STATE(342)] = 13326,
[SMALL_STATE(343)] = 13341,
[SMALL_STATE(344)] = 13356,
[SMALL_STATE(345)] = 13371,
[SMALL_STATE(346)] = 13386,
[SMALL_STATE(347)] = 13401,
[SMALL_STATE(348)] = 13416,
[SMALL_STATE(349)] = 13431,
[SMALL_STATE(350)] = 13446,
[SMALL_STATE(351)] = 13461,
[SMALL_STATE(352)] = 13476,
[SMALL_STATE(353)] = 13491,
[SMALL_STATE(354)] = 13506,
[SMALL_STATE(355)] = 13521,
[SMALL_STATE(356)] = 13536,
[SMALL_STATE(357)] = 13551,
[SMALL_STATE(358)] = 13566,
[SMALL_STATE(359)] = 13581,
[SMALL_STATE(360)] = 13596,
[SMALL_STATE(361)] = 13611,
[SMALL_STATE(362)] = 13626,
[SMALL_STATE(363)] = 13641,
[SMALL_STATE(364)] = 13656,
[SMALL_STATE(365)] = 13671,
[SMALL_STATE(366)] = 13686,
[SMALL_STATE(367)] = 13701,
[SMALL_STATE(368)] = 13716,
[SMALL_STATE(369)] = 13731,
[SMALL_STATE(370)] = 13746,
[SMALL_STATE(371)] = 13761,
[SMALL_STATE(372)] = 13776,
[SMALL_STATE(373)] = 13791,
[SMALL_STATE(374)] = 13806,
[SMALL_STATE(375)] = 13821,
[SMALL_STATE(376)] = 13836,
[SMALL_STATE(377)] = 13851,
[SMALL_STATE(378)] = 13866,
[SMALL_STATE(379)] = 13881,
[SMALL_STATE(380)] = 13896,
[SMALL_STATE(381)] = 13911,
[SMALL_STATE(382)] = 13926,
[SMALL_STATE(383)] = 13941,
[SMALL_STATE(384)] = 13956,
[SMALL_STATE(385)] = 13971,
[SMALL_STATE(386)] = 13986,
[SMALL_STATE(387)] = 14001,
[SMALL_STATE(388)] = 14016,
[SMALL_STATE(389)] = 14031,
[SMALL_STATE(390)] = 14046,
[SMALL_STATE(391)] = 14061,
[SMALL_STATE(392)] = 14076,
[SMALL_STATE(393)] = 14091,
[SMALL_STATE(394)] = 14106,
[SMALL_STATE(395)] = 14121,
[SMALL_STATE(396)] = 14136,
[SMALL_STATE(397)] = 14151,
[SMALL_STATE(398)] = 14166,
[SMALL_STATE(399)] = 14181,
[SMALL_STATE(400)] = 14196,
[SMALL_STATE(401)] = 14211,
[SMALL_STATE(402)] = 14226,
[SMALL_STATE(403)] = 14241,
[SMALL_STATE(404)] = 14256,
[SMALL_STATE(405)] = 14271,
[SMALL_STATE(406)] = 14286,
[SMALL_STATE(407)] = 14301,
[SMALL_STATE(408)] = 14316,
[SMALL_STATE(409)] = 14331,
[SMALL_STATE(410)] = 14346,
[SMALL_STATE(411)] = 14361,
[SMALL_STATE(412)] = 14376,
[SMALL_STATE(413)] = 14391,
[SMALL_STATE(414)] = 14406,
[SMALL_STATE(415)] = 14421,
[SMALL_STATE(416)] = 14436,
[SMALL_STATE(417)] = 14451,
[SMALL_STATE(418)] = 14466,
[SMALL_STATE(419)] = 14481,
[SMALL_STATE(420)] = 14496,
[SMALL_STATE(421)] = 14511,
[SMALL_STATE(422)] = 14526,
[SMALL_STATE(423)] = 14541,
[SMALL_STATE(424)] = 14556,
[SMALL_STATE(425)] = 14571,
[SMALL_STATE(426)] = 14586,
[SMALL_STATE(427)] = 14601,
[SMALL_STATE(428)] = 14616,
[SMALL_STATE(429)] = 14631,
[SMALL_STATE(430)] = 14646,
[SMALL_STATE(431)] = 14661,
[SMALL_STATE(432)] = 14676,
[SMALL_STATE(433)] = 14691,
[SMALL_STATE(434)] = 14706,
[SMALL_STATE(435)] = 14721,
[SMALL_STATE(436)] = 14736,
[SMALL_STATE(437)] = 14751,
[SMALL_STATE(438)] = 14766,
[SMALL_STATE(439)] = 14781,
[SMALL_STATE(440)] = 14796,
[SMALL_STATE(441)] = 14811,
[SMALL_STATE(442)] = 14826,
[SMALL_STATE(443)] = 14841,
[SMALL_STATE(444)] = 14856,
[SMALL_STATE(445)] = 14871,
[SMALL_STATE(446)] = 14884,
[SMALL_STATE(447)] = 14897,
[SMALL_STATE(448)] = 14910,
[SMALL_STATE(449)] = 14923,
[SMALL_STATE(450)] = 14936,
[SMALL_STATE(451)] = 14949,
[SMALL_STATE(452)] = 14960,
[SMALL_STATE(453)] = 14973,
[SMALL_STATE(454)] = 14986,
[SMALL_STATE(455)] = 14997,
[SMALL_STATE(456)] = 15010,
[SMALL_STATE(457)] = 15023,
[SMALL_STATE(458)] = 15036,
[SMALL_STATE(459)] = 15049,
[SMALL_STATE(460)] = 15062,
[SMALL_STATE(461)] = 15075,
[SMALL_STATE(462)] = 15088,
[SMALL_STATE(463)] = 15099,
[SMALL_STATE(464)] = 15110,
[SMALL_STATE(465)] = 15121,
[SMALL_STATE(466)] = 15131,
[SMALL_STATE(467)] = 15141,
[SMALL_STATE(468)] = 15151,
[SMALL_STATE(469)] = 15161,
[SMALL_STATE(470)] = 15171,
[SMALL_STATE(471)] = 15181,
[SMALL_STATE(472)] = 15191,
[SMALL_STATE(473)] = 15201,
[SMALL_STATE(474)] = 15211,
[SMALL_STATE(475)] = 15221,
[SMALL_STATE(476)] = 15231,
[SMALL_STATE(477)] = 15241,
[SMALL_STATE(478)] = 15251,
[SMALL_STATE(479)] = 15261,
[SMALL_STATE(480)] = 15271,
[SMALL_STATE(481)] = 15281,
[SMALL_STATE(482)] = 15291,
[SMALL_STATE(483)] = 15301,
[SMALL_STATE(484)] = 15311,
[SMALL_STATE(485)] = 15321,
[SMALL_STATE(486)] = 15331,
[SMALL_STATE(487)] = 15341,
[SMALL_STATE(488)] = 15351,
[SMALL_STATE(489)] = 15361,
[SMALL_STATE(490)] = 15371,
[SMALL_STATE(491)] = 15381,
[SMALL_STATE(492)] = 15391,
[SMALL_STATE(493)] = 15401,
[SMALL_STATE(494)] = 15411,
[SMALL_STATE(495)] = 15421,
[SMALL_STATE(496)] = 15431,
[SMALL_STATE(497)] = 15441,
[SMALL_STATE(498)] = 15451,
[SMALL_STATE(499)] = 15461,
[SMALL_STATE(500)] = 15471,
[SMALL_STATE(501)] = 15481,
[SMALL_STATE(502)] = 15491,
[SMALL_STATE(503)] = 15501,
[SMALL_STATE(504)] = 15511,
[SMALL_STATE(505)] = 15521,
[SMALL_STATE(506)] = 15531,
[SMALL_STATE(507)] = 15541,
[SMALL_STATE(508)] = 15551,
[SMALL_STATE(509)] = 15561,
[SMALL_STATE(510)] = 15571,
[SMALL_STATE(511)] = 15581,
[SMALL_STATE(512)] = 15591,
[SMALL_STATE(513)] = 15601,
[SMALL_STATE(514)] = 15611,
[SMALL_STATE(515)] = 15621,
[SMALL_STATE(516)] = 15631,
[SMALL_STATE(517)] = 15641,
[SMALL_STATE(518)] = 15651,
[SMALL_STATE(519)] = 15661,
[SMALL_STATE(520)] = 15671,
[SMALL_STATE(521)] = 15681,
[SMALL_STATE(522)] = 15691,
[SMALL_STATE(523)] = 15701,
[SMALL_STATE(524)] = 15711,
[SMALL_STATE(525)] = 15721,
[SMALL_STATE(526)] = 15731,
[SMALL_STATE(527)] = 15741,
[SMALL_STATE(528)] = 15751,
[SMALL_STATE(529)] = 15761,
[SMALL_STATE(530)] = 15771,
[SMALL_STATE(531)] = 15781,
[SMALL_STATE(532)] = 15791,
[SMALL_STATE(533)] = 15801,
[SMALL_STATE(534)] = 15811,
[SMALL_STATE(535)] = 15821,
[SMALL_STATE(536)] = 15831,
[SMALL_STATE(537)] = 15841,
[SMALL_STATE(538)] = 15851,
[SMALL_STATE(539)] = 15861,
[SMALL_STATE(540)] = 15871,
[SMALL_STATE(541)] = 15881,
[SMALL_STATE(542)] = 15891,
[SMALL_STATE(543)] = 15901,
[SMALL_STATE(544)] = 15911,
[SMALL_STATE(545)] = 15921,
[SMALL_STATE(546)] = 15931,
[SMALL_STATE(547)] = 15941,
[SMALL_STATE(548)] = 15951,
[SMALL_STATE(549)] = 15961,
[SMALL_STATE(550)] = 15971,
[SMALL_STATE(551)] = 15981,
[SMALL_STATE(552)] = 15991,
[SMALL_STATE(553)] = 16001,
[SMALL_STATE(554)] = 16011,
[SMALL_STATE(555)] = 16021,
[SMALL_STATE(556)] = 16031,
[SMALL_STATE(557)] = 16041,
[SMALL_STATE(558)] = 16048,
[SMALL_STATE(559)] = 16055,
[SMALL_STATE(560)] = 16062,
[SMALL_STATE(561)] = 16069,
[SMALL_STATE(562)] = 16076,
[SMALL_STATE(563)] = 16083,
[SMALL_STATE(564)] = 16090,
[SMALL_STATE(565)] = 16097,
[SMALL_STATE(566)] = 16104,
[SMALL_STATE(567)] = 16111,
[SMALL_STATE(568)] = 16118,
[SMALL_STATE(569)] = 16125,
[SMALL_STATE(570)] = 16132,
[SMALL_STATE(571)] = 16139,
[SMALL_STATE(572)] = 16146,
[SMALL_STATE(573)] = 16153,
[SMALL_STATE(574)] = 16160,
[SMALL_STATE(575)] = 16167,
[SMALL_STATE(576)] = 16174,
[SMALL_STATE(577)] = 16181,
[SMALL_STATE(578)] = 16188,
[SMALL_STATE(579)] = 16195,
[SMALL_STATE(580)] = 16202,
[SMALL_STATE(581)] = 16209,
[SMALL_STATE(582)] = 16216,
[SMALL_STATE(583)] = 16223,
[SMALL_STATE(584)] = 16227,
[SMALL_STATE(585)] = 16231,
[SMALL_STATE(586)] = 16235,
[SMALL_STATE(587)] = 16239,
[SMALL_STATE(588)] = 16243,
[SMALL_STATE(589)] = 16247,
[SMALL_STATE(590)] = 16251,
[SMALL_STATE(591)] = 16255,
[SMALL_STATE(592)] = 16259,
[SMALL_STATE(593)] = 16263,
[SMALL_STATE(594)] = 16267,
[SMALL_STATE(595)] = 16271,
[SMALL_STATE(596)] = 16275,
[SMALL_STATE(597)] = 16279,
[SMALL_STATE(598)] = 16283,
[SMALL_STATE(599)] = 16287,
[SMALL_STATE(600)] = 16291,
[SMALL_STATE(601)] = 16295,
[SMALL_STATE(602)] = 16299,
[SMALL_STATE(603)] = 16303,
[SMALL_STATE(604)] = 16307,
[SMALL_STATE(605)] = 16311,
[SMALL_STATE(606)] = 16315,
[SMALL_STATE(607)] = 16319,
[SMALL_STATE(608)] = 16323,
[SMALL_STATE(609)] = 16327,
[SMALL_STATE(610)] = 16331,
[SMALL_STATE(611)] = 16335,
[SMALL_STATE(612)] = 16339,
[SMALL_STATE(613)] = 16343,
[SMALL_STATE(614)] = 16347,
[SMALL_STATE(615)] = 16351,
[SMALL_STATE(616)] = 16355,
[SMALL_STATE(617)] = 16359,
[SMALL_STATE(618)] = 16363,
[SMALL_STATE(619)] = 16367,
[SMALL_STATE(620)] = 16371,
[SMALL_STATE(621)] = 16375,
[SMALL_STATE(622)] = 16379,
[SMALL_STATE(623)] = 16383,
[SMALL_STATE(624)] = 16387,
[SMALL_STATE(625)] = 16391,
[SMALL_STATE(626)] = 16395,
[SMALL_STATE(627)] = 16399,
[SMALL_STATE(628)] = 16403,
[SMALL_STATE(629)] = 16407,
[SMALL_STATE(630)] = 16411,
[SMALL_STATE(631)] = 16415,
[SMALL_STATE(632)] = 16419,
[SMALL_STATE(633)] = 16423,
[SMALL_STATE(634)] = 16427,
[SMALL_STATE(635)] = 16431,
[SMALL_STATE(636)] = 16435,
[SMALL_STATE(637)] = 16439,
[SMALL_STATE(638)] = 16443,
[SMALL_STATE(639)] = 16447,
[SMALL_STATE(640)] = 16451,
[SMALL_STATE(641)] = 16455,
[SMALL_STATE(642)] = 16459,
[SMALL_STATE(643)] = 16463,
[SMALL_STATE(644)] = 16467,
[SMALL_STATE(645)] = 16471,
[SMALL_STATE(646)] = 16475,
[SMALL_STATE(647)] = 16479,
[SMALL_STATE(648)] = 16483,
[SMALL_STATE(649)] = 16487,
[SMALL_STATE(650)] = 16491,
[SMALL_STATE(651)] = 16495,
[SMALL_STATE(652)] = 16499,
[SMALL_STATE(653)] = 16503,
[SMALL_STATE(654)] = 16507,
[SMALL_STATE(655)] = 16511,
[SMALL_STATE(656)] = 16515,
[SMALL_STATE(657)] = 16519,
[SMALL_STATE(658)] = 16523,
[SMALL_STATE(659)] = 16527,
[SMALL_STATE(660)] = 16531,
[SMALL_STATE(661)] = 16535,
[SMALL_STATE(662)] = 16539,
[SMALL_STATE(663)] = 16543,
[SMALL_STATE(664)] = 16547,
[SMALL_STATE(665)] = 16551,
[SMALL_STATE(666)] = 16555,
[SMALL_STATE(667)] = 16559,
[SMALL_STATE(668)] = 16563,
[SMALL_STATE(669)] = 16567,
[SMALL_STATE(670)] = 16571,
[SMALL_STATE(671)] = 16575,
[SMALL_STATE(672)] = 16579,
[SMALL_STATE(673)] = 16583,
[SMALL_STATE(674)] = 16587,
[SMALL_STATE(675)] = 16591,
[SMALL_STATE(676)] = 16595,
[SMALL_STATE(677)] = 16599,
[SMALL_STATE(678)] = 16603,
[SMALL_STATE(679)] = 16607,
[SMALL_STATE(680)] = 16611,
[SMALL_STATE(681)] = 16615,
[SMALL_STATE(682)] = 16619,
[SMALL_STATE(683)] = 16623,
[SMALL_STATE(684)] = 16627,
2021-04-10 10:29:19 -04:00
};
2021-05-27 03:13:26 -04:00
static const TSParseActionEntry ts_parse_actions[] = {
2021-04-10 10:29:19 -04:00
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
2021-07-01 07:36:35 -04:00
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
2021-07-01 07:36:35 -04:00
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547),
2021-07-01 07:36:35 -04:00
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487),
[33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485),
[45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(14),
2021-07-01 07:36:35 -04:00
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(529),
[57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(480),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(483),
[63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2),
2021-07-01 07:36:35 -04:00
[65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(467),
[68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(468),
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(469),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(470),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(547),
2021-07-01 07:36:35 -04:00
[80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528),
[84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[92] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169),
[94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
[100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
[102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
[106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
[192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
[210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422),
[212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
[220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
[256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
[264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360),
[268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443),
[280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430),
[292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
[310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(239),
[315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(528),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(100),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(143),
[324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2),
[326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(209),
[329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(169),
[332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(241),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
[343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
[345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442),
[349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377),
[353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539),
[361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523),
[367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500),
[371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499),
[375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554),
[377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497),
[381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503),
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482),
[389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486),
[391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484),
[397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490),
[409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498),
[411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506),
[419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551),
[423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549),
[427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546),
[431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458),
[433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491),
[435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229),
[443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543),
[449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531),
[451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532),
[453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537),
[455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610),
[459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518),
[461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522),
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(162),
[488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(529),
[491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(467),
[494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(468),
[497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(469),
[500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(470),
[503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2),
[505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(503),
[508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
[510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(163),
[513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(471),
[516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164),
[519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(554),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(166),
[529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526),
[532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(167),
[535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(507),
[538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(239),
[541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(528),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(168),
[549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1),
[551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
[565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461),
[579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
[581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
[587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
[589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625),
[593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
[595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672),
[599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(446),
[602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(488),
[605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2),
[607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(211),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479),
[616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(461),
[619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(474),
[622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(213),
[625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
[629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1),
[631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233),
[633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1),
[635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
[637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1),
[641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(451),
[644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(232),
[647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(479),
[650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2),
[652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(458),
[655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(491),
[658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(233),
[661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 5),
[663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 5),
[665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 5),
[667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 5),
[669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2),
[671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2),
[673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1),
[675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1),
[677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 3),
[679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 3),
[681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1),
[683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1),
[685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3),
[687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3),
[689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1),
[691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1),
[693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 4),
[695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 4),
[697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7),
[699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7),
[701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3),
[703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3),
[705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3),
[707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3),
[709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 7),
[711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 7),
[713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4),
[715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4),
[717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3),
[719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3),
[721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3),
[723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3),
[725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3),
[727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3),
[729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3),
[731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3),
[733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3),
[735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3),
[737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5),
[739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5),
[741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4),
[743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4),
[745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4),
[747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4),
[749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5),
[751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5),
[753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3),
[755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3),
[757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3),
[759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3),
[761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3),
[763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3),
[765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3),
[767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3),
[769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5),
[771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5),
[773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3),
[775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3),
[777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3),
[779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3),
[781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4),
[783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4),
[785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2),
[787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2),
[789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2),
[791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2),
[793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 6),
[795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 6),
[797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 7),
[799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 7),
[801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6),
[803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6),
[805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 6),
[807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 6),
[809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2),
[811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2),
[813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2),
[815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2),
[817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5),
[819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5),
[821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5),
[823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5),
[825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3),
[827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3),
[829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5),
[831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5),
[833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2),
[835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2),
[837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4),
[839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4),
[841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4),
[843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4),
[845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4),
[847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4),
[849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4),
[851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4),
[853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4),
[855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4),
[857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5),
[859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5),
[861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5),
[863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5),
[865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5),
[867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5),
[869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3),
[871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3),
[873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3),
[875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3),
[877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3),
[879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3),
[881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3),
[883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3),
[885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4),
[887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4),
[889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4),
[891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4),
[893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4),
[895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4),
[897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4),
[899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4),
[901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5),
[903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5),
[905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566),
[907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
[909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576),
[911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517),
[913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473),
[917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
[921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476),
[925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
[929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478),
[933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530),
[937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675),
[943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676),
[945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668),
[957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669),
[959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512),
[963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567),
[965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548),
[969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
[971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
[973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
[977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
[979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
[981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524),
[985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
[987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481),
[989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661),
[993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662),
[995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
[999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
[1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
[1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
[1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655),
[1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569),
[1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561),
[1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492),
[1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493),
[1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562),
[1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494),
[1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495),
[1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563),
[1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496),
[1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502),
[1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542),
[1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538),
[1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505),
[1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
[1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572),
[1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574),
[1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509),
[1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
[1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511),
[1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575),
[1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515),
[1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516),
[1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525),
[1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
[1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608),
[1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609),
[1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472),
[1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2),
[1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(530),
[1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513),
[1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514),
[1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578),
[1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579),
[1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519),
[1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520),
[1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
[1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
[1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
[1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533),
[1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582),
[1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534),
[1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
[1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581),
[1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535),
[1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
[1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573),
[1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571),
[1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540),
[1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
[1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
[1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
[1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
[1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
[1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
[1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
[1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
[1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206),
[1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
[1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200),
[1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413),
[1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
[1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186),
[1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
[1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
[1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184),
[1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
[1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
[1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
[1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
[1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189),
[1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201),
[1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188),
[1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
[1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
[1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
[1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
[1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591),
[1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603),
[1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604),
[1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606),
[1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
[1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
[1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453),
[1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
[1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681),
[1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680),
[1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678),
[1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677),
[1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
[1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607),
[1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644),
[1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643),
[1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642),
[1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641),
[1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455),
[1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
[1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647),
[1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
[1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623),
[1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622),
[1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
[1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
[1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663),
[1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
[1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
[1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666),
[1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601),
[1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600),
[1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599),
[1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594),
[1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674),
[1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
[1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673),
[1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
[1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667),
[1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670),
[1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[1470] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
[1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
[1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
[1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449),
[1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
2021-04-10 10:29:19 -04:00
};
#ifdef __cplusplus
extern "C" {
#endif
void *tree_sitter_cmake_external_scanner_create(void);
void tree_sitter_cmake_external_scanner_destroy(void *);
bool tree_sitter_cmake_external_scanner_scan(void *, TSLexer *, const bool *);
unsigned tree_sitter_cmake_external_scanner_serialize(void *, char *);
void tree_sitter_cmake_external_scanner_deserialize(void *, const char *, unsigned);
2021-04-10 10:29:19 -04:00
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_cmake(void) {
2021-05-27 03:13:26 -04:00
static const TSLanguage language = {
2021-04-10 10:29:19 -04:00
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
2021-05-27 03:13:26 -04:00
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
2021-04-10 10:29:19 -04:00
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
2021-05-27 03:13:26 -04:00
.alias_sequences = &ts_alias_sequences[0][0],
2021-04-10 10:29:19 -04:00
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.external_scanner = {
&ts_external_scanner_states[0][0],
ts_external_scanner_symbol_map,
tree_sitter_cmake_external_scanner_create,
tree_sitter_cmake_external_scanner_destroy,
tree_sitter_cmake_external_scanner_scan,
tree_sitter_cmake_external_scanner_serialize,
tree_sitter_cmake_external_scanner_deserialize,
},
2021-04-10 10:29:19 -04:00
};
return &language;
}
#ifdef __cplusplus
}
#endif