tree-sitter-cmake/src/parser.c

17722 lines
474 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
#define STATE_COUNT 662
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 76
#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_LBRACE = 7,
anon_sym_RBRACE = 8,
anon_sym_DOLLARENV = 9,
anon_sym_LBRACE = 10,
anon_sym_DOLLARCACHE = 11,
aux_sym__untrimmed_argument_token1 = 12,
anon_sym_DQUOTE = 13,
aux_sym_quoted_element_token1 = 14,
aux_sym_unquoted_argument_token1 = 15,
aux_sym_if_command_token1 = 16,
anon_sym_LPAREN = 17,
anon_sym_RPAREN = 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,
sym_quoted_argument = 46,
sym_quoted_element = 47,
sym_unquoted_argument = 48,
sym_if_command = 49,
sym_elseif_command = 50,
sym_else_command = 51,
sym_endif_command = 52,
sym_if_condition = 53,
sym_foreach_command = 54,
sym_endforeach_command = 55,
sym_foreach_loop = 56,
sym_while_command = 57,
sym_endwhile_command = 58,
sym_while_loop = 59,
sym_function_command = 60,
sym_endfunction_command = 61,
sym_function_def = 62,
sym_macro_command = 63,
sym_endmacro_command = 64,
sym_macro_def = 65,
sym_normal_command = 66,
sym__command_invocation = 67,
sym__untrimmed_command_invocation = 68,
aux_sym_source_file_repeat1 = 69,
aux_sym_variable_repeat1 = 70,
aux_sym_quoted_element_repeat1 = 71,
aux_sym_unquoted_argument_repeat1 = 72,
aux_sym_if_command_repeat1 = 73,
aux_sym_if_command_repeat2 = 74,
aux_sym_if_condition_repeat1 = 75,
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_LBRACE] = "${",
[anon_sym_RBRACE] = "}",
2021-06-16 15:37:14 -04:00
[anon_sym_DOLLARENV] = "$ENV",
[anon_sym_LBRACE] = "{",
[anon_sym_DOLLARCACHE] = "$CACHE",
[aux_sym__untrimmed_argument_token1] = "_untrimmed_argument_token1",
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",
2021-04-10 10:29:19 -04:00
[anon_sym_LPAREN] = "(",
2021-06-17 16:32:18 -04:00
[anon_sym_RPAREN] = ")",
[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-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_LBRACE] = anon_sym_DOLLAR_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
2021-06-16 15:37:14 -04:00
[anon_sym_DOLLARENV] = anon_sym_DOLLARENV,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_DOLLARCACHE] = anon_sym_DOLLARCACHE,
[aux_sym__untrimmed_argument_token1] = aux_sym__untrimmed_argument_token1,
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,
2021-04-10 10:29:19 -04:00
[anon_sym_LPAREN] = anon_sym_LPAREN,
2021-06-17 16:32:18 -04:00
[anon_sym_RPAREN] = anon_sym_RPAREN,
[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-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_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
2021-06-16 15:37:14 -04:00
[anon_sym_DOLLARENV] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
2021-06-16 15:37:14 -04:00
[anon_sym_DOLLARCACHE] = {
.visible = true,
.named = false,
},
[aux_sym__untrimmed_argument_token1] = {
.visible = false,
.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,
},
2021-04-10 10:29:19 -04:00
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
2021-06-17 16:32:18 -04:00
[anon_sym_RPAREN] = {
.visible = true,
.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-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:
if (eof) ADVANCE(17);
if (lookahead == '"') ADVANCE(30);
if (lookahead == '$') ADVANCE(34);
if (lookahead == '(') ADVANCE(36);
if (lookahead == ')') ADVANCE(37);
if (lookahead == ';') ADVANCE(22);
if (lookahead == '\\') ADVANCE(10);
2021-04-10 10:29:19 -04:00
if (lookahead == '\t' ||
lookahead == ' ') ADVANCE(29);
if (lookahead == '\n' ||
lookahead == '\r') ADVANCE(29);
if (lookahead != 0 &&
lookahead != '#') ADVANCE(33);
2021-04-10 10:29:19 -04:00
END_STATE();
case 1:
if (lookahead == '"') ADVANCE(30);
if (lookahead == '$') ADVANCE(34);
if (lookahead == ')') ADVANCE(37);
if (lookahead == ';') ADVANCE(22);
if (lookahead == '\\') ADVANCE(10);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (lookahead != 0 &&
lookahead != '#' &&
lookahead != '(') ADVANCE(33);
2021-04-11 11:27:20 -04:00
END_STATE();
2021-06-17 16:43:12 -04:00
case 2:
if (lookahead == '"') ADVANCE(30);
if (lookahead == '$') ADVANCE(32);
if (lookahead == ';') ADVANCE(22);
if (lookahead == '\\') ADVANCE(10);
if (lookahead != 0) ADVANCE(31);
END_STATE();
2021-06-17 16:43:12 -04:00
case 3:
if (lookahead == '(') ADVANCE(36);
if (lookahead == ';') ADVANCE(22);
if (lookahead == '\\') ADVANCE(10);
if (lookahead == '}') ADVANCE(25);
if (lookahead == '\t' ||
lookahead == ' ') ADVANCE(35);
if (lookahead == '+' ||
('-' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(23);
2021-06-17 16:43:12 -04:00
END_STATE();
case 4:
if (lookahead == 'A') ADVANCE(5);
END_STATE();
2021-06-07 17:02:35 -04:00
case 5:
if (lookahead == 'C') ADVANCE(7);
2021-06-17 16:32:18 -04:00
END_STATE();
case 6:
if (lookahead == 'E') ADVANCE(28);
2021-06-17 17:06:32 -04:00
END_STATE();
case 7:
if (lookahead == 'H') ADVANCE(6);
2021-06-06 09:44:05 -04:00
END_STATE();
case 8:
if (lookahead == 'N') ADVANCE(9);
END_STATE();
case 9:
if (lookahead == 'V') ADVANCE(26);
END_STATE();
case 10:
if (lookahead == 'n') ADVANCE(21);
if (lookahead == 'r') ADVANCE(20);
if (lookahead == 't') ADVANCE(19);
if (lookahead != 0 &&
(lookahead < '0' || '9' < lookahead) &&
lookahead != ';' &&
(lookahead < 'A' || 'Z' < lookahead) &&
(lookahead < 'a' || 'z' < lookahead)) ADVANCE(18);
END_STATE();
case 11:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(87);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 12:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(94);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 13:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(95);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 14:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(96);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 15:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(97);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 16:
if (eof) ADVANCE(17);
if (lookahead == '{') ADVANCE(27);
if (lookahead == '}') ADVANCE(25);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(99);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(73);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(53);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(29);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 17:
ACCEPT_TOKEN(ts_builtin_sym_end);
2021-06-14 16:12:45 -04:00
END_STATE();
case 18:
ACCEPT_TOKEN(sym__escape_identity);
2021-06-14 16:12:45 -04:00
END_STATE();
case 19:
ACCEPT_TOKEN(anon_sym_BSLASHt);
2021-06-14 16:12:45 -04:00
END_STATE();
case 20:
ACCEPT_TOKEN(anon_sym_BSLASHr);
2021-06-14 16:12:45 -04:00
END_STATE();
case 21:
ACCEPT_TOKEN(anon_sym_BSLASHn);
2021-06-14 16:12:45 -04:00
END_STATE();
case 22:
ACCEPT_TOKEN(sym__escape_semicolon);
2021-06-14 16:12:45 -04:00
END_STATE();
case 23:
ACCEPT_TOKEN(aux_sym_variable_token1);
2021-06-14 16:12:45 -04:00
END_STATE();
case 24:
ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE);
2021-06-14 16:12:45 -04:00
END_STATE();
case 25:
ACCEPT_TOKEN(anon_sym_RBRACE);
2021-06-14 16:12:45 -04:00
END_STATE();
case 26:
ACCEPT_TOKEN(anon_sym_DOLLARENV);
2021-06-14 16:12:45 -04:00
END_STATE();
case 27:
ACCEPT_TOKEN(anon_sym_LBRACE);
2021-06-14 16:12:45 -04:00
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_DOLLARCACHE);
2021-06-14 16:12:45 -04:00
END_STATE();
case 29:
ACCEPT_TOKEN(aux_sym__untrimmed_argument_token1);
2021-06-14 16:12:45 -04:00
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_DQUOTE);
2021-06-06 14:38:18 -04:00
END_STATE();
2021-06-16 15:37:14 -04:00
case 31:
ACCEPT_TOKEN(aux_sym_quoted_element_token1);
2021-06-14 16:12:45 -04:00
END_STATE();
2021-06-16 15:37:14 -04:00
case 32:
ACCEPT_TOKEN(aux_sym_quoted_element_token1);
if (lookahead == 'C') ADVANCE(4);
if (lookahead == 'E') ADVANCE(8);
if (lookahead == '{') ADVANCE(24);
END_STATE();
2021-06-16 15:37:14 -04:00
case 33:
ACCEPT_TOKEN(aux_sym_unquoted_argument_token1);
2021-06-06 14:38:18 -04:00
END_STATE();
2021-06-16 15:37:14 -04:00
case 34:
ACCEPT_TOKEN(aux_sym_unquoted_argument_token1);
if (lookahead == 'C') ADVANCE(4);
if (lookahead == 'E') ADVANCE(8);
if (lookahead == '{') ADVANCE(24);
2021-06-06 14:38:18 -04:00
END_STATE();
2021-06-16 15:37:14 -04:00
case 35:
ACCEPT_TOKEN(aux_sym_if_command_token1);
2021-06-06 14:38:18 -04:00
END_STATE();
2021-06-16 15:37:14 -04:00
case 36:
ACCEPT_TOKEN(anon_sym_LPAREN);
2021-06-16 15:37:14 -04:00
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 38:
ACCEPT_TOKEN(aux_sym_else_command_token1);
if (lookahead == '$') ADVANCE(34);
if (lookahead == ';') ADVANCE(22);
if (lookahead == '\\') ADVANCE(10);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(40);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
lookahead != '(' &&
lookahead != ')') ADVANCE(33);
END_STATE();
case 39:
ACCEPT_TOKEN(aux_sym_else_command_token1);
if (lookahead == ')') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(40);
END_STATE();
case 40:
ACCEPT_TOKEN(aux_sym_else_command_token1);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(40);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_if);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-16 15:37:14 -04:00
END_STATE();
case 42:
ACCEPT_TOKEN(sym_elseif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-16 15:37:14 -04:00
END_STATE();
case 43:
ACCEPT_TOKEN(sym_else);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(75);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-04-10 10:29:19 -04:00
END_STATE();
case 44:
ACCEPT_TOKEN(sym_endif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-04-10 10:29:19 -04:00
END_STATE();
case 45:
ACCEPT_TOKEN(sym_foreach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-04-10 15:55:47 -04:00
END_STATE();
case 46:
ACCEPT_TOKEN(sym_endforeach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-06 14:38:18 -04:00
END_STATE();
case 47:
ACCEPT_TOKEN(sym_while);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_endwhile);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 49:
ACCEPT_TOKEN(sym_function);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 50:
ACCEPT_TOKEN(sym_endfunction);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 51:
ACCEPT_TOKEN(sym_macro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
END_STATE();
case 52:
ACCEPT_TOKEN(sym_endmacro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-06 14:38:18 -04:00
END_STATE();
case 53:
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(114);
2021-06-06 14:38:18 -04:00
END_STATE();
case 54:
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(114);
END_STATE();
case 55:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(60);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-04-10 10:29:19 -04:00
END_STATE();
case 56:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-04-11 11:27:20 -04:00
END_STATE();
case 57:
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(114);
END_STATE();
case 58:
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(114);
2021-06-06 14:38:18 -04:00
END_STATE();
case 59:
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(114);
END_STATE();
case 60:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(80);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 61:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(107);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 62:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(111);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 63:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(113);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 64:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(90);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 65:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(83);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 66:
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 67:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(77);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 68:
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 69:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 70:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(48);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 72:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(55);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 73:
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 74:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 75:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 76:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(112);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 77:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(104);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 78:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(82);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 80:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(46);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 81:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(86);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 82:
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 83:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(74);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 85:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(103);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 86:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(89);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 87:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(109);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 88:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(68);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 89:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(70);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 90:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(56);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 92:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(50);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 93:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(57);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 94:
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(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 96:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 97:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 98:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 99:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(105);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(93);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 101:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(52);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 103:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(92);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 104:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(108);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 105:
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(114);
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(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 107:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(101);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 108:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(72);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 109:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(69);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 110:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(84);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 111:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(85);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 112:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(98);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 113:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(81);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
2021-06-17 16:32:18 -04:00
END_STATE();
case 114:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(114);
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},
[1] = {.lex_state = 16, .external_lex_state = 2},
[2] = {.lex_state = 11, .external_lex_state = 2},
[3] = {.lex_state = 11, .external_lex_state = 2},
[4] = {.lex_state = 11, .external_lex_state = 2},
[5] = {.lex_state = 11, .external_lex_state = 2},
[6] = {.lex_state = 11, .external_lex_state = 2},
[7] = {.lex_state = 11, .external_lex_state = 2},
[8] = {.lex_state = 11, .external_lex_state = 2},
[9] = {.lex_state = 11, .external_lex_state = 2},
[10] = {.lex_state = 11, .external_lex_state = 2},
[11] = {.lex_state = 11, .external_lex_state = 2},
[12] = {.lex_state = 11, .external_lex_state = 2},
[13] = {.lex_state = 11, .external_lex_state = 2},
[14] = {.lex_state = 11, .external_lex_state = 2},
[15] = {.lex_state = 1, .external_lex_state = 1},
[16] = {.lex_state = 1, .external_lex_state = 1},
[17] = {.lex_state = 1, .external_lex_state = 1},
[18] = {.lex_state = 1, .external_lex_state = 1},
[19] = {.lex_state = 1, .external_lex_state = 1},
[20] = {.lex_state = 1, .external_lex_state = 1},
[21] = {.lex_state = 1, .external_lex_state = 1},
[22] = {.lex_state = 1, .external_lex_state = 1},
[23] = {.lex_state = 1, .external_lex_state = 1},
[24] = {.lex_state = 1, .external_lex_state = 1},
[25] = {.lex_state = 1, .external_lex_state = 1},
[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},
[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},
[37] = {.lex_state = 1, .external_lex_state = 1},
[38] = {.lex_state = 1, .external_lex_state = 1},
[39] = {.lex_state = 1, .external_lex_state = 1},
[40] = {.lex_state = 1, .external_lex_state = 1},
[41] = {.lex_state = 1, .external_lex_state = 1},
[42] = {.lex_state = 1, .external_lex_state = 1},
[43] = {.lex_state = 1, .external_lex_state = 1},
[44] = {.lex_state = 1, .external_lex_state = 1},
[45] = {.lex_state = 1, .external_lex_state = 1},
[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},
[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},
[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},
[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},
[67] = {.lex_state = 1, .external_lex_state = 1},
[68] = {.lex_state = 1, .external_lex_state = 1},
[69] = {.lex_state = 1, .external_lex_state = 1},
[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},
[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},
[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},
[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},
[103] = {.lex_state = 1, .external_lex_state = 1},
[104] = {.lex_state = 1, .external_lex_state = 1},
[105] = {.lex_state = 1, .external_lex_state = 1},
[106] = {.lex_state = 1, .external_lex_state = 1},
[107] = {.lex_state = 1, .external_lex_state = 1},
[108] = {.lex_state = 1, .external_lex_state = 1},
[109] = {.lex_state = 1, .external_lex_state = 1},
[110] = {.lex_state = 1, .external_lex_state = 1},
[111] = {.lex_state = 1, .external_lex_state = 1},
[112] = {.lex_state = 12, .external_lex_state = 2},
[113] = {.lex_state = 15, .external_lex_state = 2},
[114] = {.lex_state = 13, .external_lex_state = 2},
[115] = {.lex_state = 12, .external_lex_state = 2},
[116] = {.lex_state = 14, .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 = 14, .external_lex_state = 2},
[121] = {.lex_state = 13, .external_lex_state = 2},
[122] = {.lex_state = 15, .external_lex_state = 2},
[123] = {.lex_state = 13, .external_lex_state = 2},
[124] = {.lex_state = 15, .external_lex_state = 2},
[125] = {.lex_state = 14, .external_lex_state = 2},
[126] = {.lex_state = 13, .external_lex_state = 2},
[127] = {.lex_state = 12, .external_lex_state = 2},
[128] = {.lex_state = 13, .external_lex_state = 2},
[129] = {.lex_state = 14, .external_lex_state = 2},
[130] = {.lex_state = 12, .external_lex_state = 2},
[131] = {.lex_state = 15, .external_lex_state = 2},
[132] = {.lex_state = 13, .external_lex_state = 2},
[133] = {.lex_state = 14, .external_lex_state = 2},
[134] = {.lex_state = 15, .external_lex_state = 2},
[135] = {.lex_state = 12, .external_lex_state = 2},
[136] = {.lex_state = 14, .external_lex_state = 2},
[137] = {.lex_state = 14, .external_lex_state = 2},
[138] = {.lex_state = 13, .external_lex_state = 2},
[139] = {.lex_state = 12, .external_lex_state = 2},
[140] = {.lex_state = 15, .external_lex_state = 2},
[141] = {.lex_state = 13, .external_lex_state = 2},
[142] = {.lex_state = 12, .external_lex_state = 2},
[143] = {.lex_state = 12, .external_lex_state = 2},
[144] = {.lex_state = 15, .external_lex_state = 2},
[145] = {.lex_state = 12, .external_lex_state = 2},
[146] = {.lex_state = 14, .external_lex_state = 2},
[147] = {.lex_state = 14, .external_lex_state = 2},
[148] = {.lex_state = 12, .external_lex_state = 2},
[149] = {.lex_state = 13, .external_lex_state = 2},
[150] = {.lex_state = 14, .external_lex_state = 2},
[151] = {.lex_state = 15, .external_lex_state = 2},
[152] = {.lex_state = 15, .external_lex_state = 2},
[153] = {.lex_state = 12, .external_lex_state = 2},
[154] = {.lex_state = 13, .external_lex_state = 2},
[155] = {.lex_state = 14, .external_lex_state = 2},
[156] = {.lex_state = 12, .external_lex_state = 2},
[157] = {.lex_state = 13, .external_lex_state = 2},
[158] = {.lex_state = 15, .external_lex_state = 2},
[159] = {.lex_state = 15, .external_lex_state = 2},
[160] = {.lex_state = 0, .external_lex_state = 1},
[161] = {.lex_state = 13, .external_lex_state = 2},
[162] = {.lex_state = 15, .external_lex_state = 2},
[163] = {.lex_state = 0, .external_lex_state = 1},
[164] = {.lex_state = 16, .external_lex_state = 2},
[165] = {.lex_state = 0, .external_lex_state = 1},
[166] = {.lex_state = 0, .external_lex_state = 1},
[167] = {.lex_state = 0, .external_lex_state = 1},
[168] = {.lex_state = 16, .external_lex_state = 2},
[169] = {.lex_state = 0, .external_lex_state = 1},
[170] = {.lex_state = 0, .external_lex_state = 1},
[171] = {.lex_state = 0, .external_lex_state = 1},
[172] = {.lex_state = 0, .external_lex_state = 1},
[173] = {.lex_state = 0, .external_lex_state = 1},
[174] = {.lex_state = 0, .external_lex_state = 1},
[175] = {.lex_state = 14, .external_lex_state = 2},
[176] = {.lex_state = 0, .external_lex_state = 1},
[177] = {.lex_state = 12, .external_lex_state = 2},
[178] = {.lex_state = 0, .external_lex_state = 1},
[179] = {.lex_state = 0, .external_lex_state = 1},
[180] = {.lex_state = 0, .external_lex_state = 1},
[181] = {.lex_state = 0, .external_lex_state = 1},
[182] = {.lex_state = 0, .external_lex_state = 1},
[183] = {.lex_state = 0, .external_lex_state = 1},
[184] = {.lex_state = 0, .external_lex_state = 1},
[185] = {.lex_state = 0, .external_lex_state = 1},
[186] = {.lex_state = 0, .external_lex_state = 1},
[187] = {.lex_state = 0, .external_lex_state = 1},
[188] = {.lex_state = 0, .external_lex_state = 1},
[189] = {.lex_state = 0, .external_lex_state = 1},
[190] = {.lex_state = 0, .external_lex_state = 1},
[191] = {.lex_state = 0, .external_lex_state = 1},
[192] = {.lex_state = 0, .external_lex_state = 1},
[193] = {.lex_state = 0, .external_lex_state = 1},
[194] = {.lex_state = 0, .external_lex_state = 1},
[195] = {.lex_state = 0, .external_lex_state = 1},
[196] = {.lex_state = 0, .external_lex_state = 1},
[197] = {.lex_state = 0, .external_lex_state = 1},
[198] = {.lex_state = 0, .external_lex_state = 1},
[199] = {.lex_state = 0, .external_lex_state = 1},
[200] = {.lex_state = 0, .external_lex_state = 1},
[201] = {.lex_state = 0, .external_lex_state = 1},
[202] = {.lex_state = 0, .external_lex_state = 1},
[203] = {.lex_state = 0, .external_lex_state = 1},
[204] = {.lex_state = 1, .external_lex_state = 1},
[205] = {.lex_state = 1, .external_lex_state = 1},
[206] = {.lex_state = 2, .external_lex_state = 2},
[207] = {.lex_state = 2, .external_lex_state = 2},
[208] = {.lex_state = 2, .external_lex_state = 2},
[209] = {.lex_state = 0, .external_lex_state = 2},
[210] = {.lex_state = 2, .external_lex_state = 2},
[211] = {.lex_state = 0, .external_lex_state = 2},
[212] = {.lex_state = 2, .external_lex_state = 2},
[213] = {.lex_state = 38, .external_lex_state = 2},
[214] = {.lex_state = 38, .external_lex_state = 2},
[215] = {.lex_state = 1, .external_lex_state = 1},
[216] = {.lex_state = 1, .external_lex_state = 1},
[217] = {.lex_state = 1, .external_lex_state = 1},
[218] = {.lex_state = 1, .external_lex_state = 1},
[219] = {.lex_state = 1, .external_lex_state = 1},
[220] = {.lex_state = 1, .external_lex_state = 1},
[221] = {.lex_state = 1, .external_lex_state = 1},
[222] = {.lex_state = 1, .external_lex_state = 1},
[223] = {.lex_state = 11, .external_lex_state = 2},
[224] = {.lex_state = 38, .external_lex_state = 2},
[225] = {.lex_state = 11, .external_lex_state = 2},
[226] = {.lex_state = 11, .external_lex_state = 2},
[227] = {.lex_state = 11, .external_lex_state = 2},
[228] = {.lex_state = 11, .external_lex_state = 2},
[229] = {.lex_state = 3, .external_lex_state = 2},
[230] = {.lex_state = 11, .external_lex_state = 2},
[231] = {.lex_state = 11, .external_lex_state = 2},
[232] = {.lex_state = 11, .external_lex_state = 2},
[233] = {.lex_state = 11, .external_lex_state = 2},
[234] = {.lex_state = 2, .external_lex_state = 2},
[235] = {.lex_state = 0, .external_lex_state = 2},
[236] = {.lex_state = 11, .external_lex_state = 2},
[237] = {.lex_state = 3, .external_lex_state = 2},
[238] = {.lex_state = 3, .external_lex_state = 2},
[239] = {.lex_state = 3, .external_lex_state = 2},
[240] = {.lex_state = 11, .external_lex_state = 2},
[241] = {.lex_state = 11, .external_lex_state = 2},
[242] = {.lex_state = 11, .external_lex_state = 2},
[243] = {.lex_state = 11, .external_lex_state = 2},
[244] = {.lex_state = 11, .external_lex_state = 2},
[245] = {.lex_state = 11, .external_lex_state = 2},
[246] = {.lex_state = 2, .external_lex_state = 2},
[247] = {.lex_state = 11, .external_lex_state = 2},
[248] = {.lex_state = 3, .external_lex_state = 2},
[249] = {.lex_state = 0, .external_lex_state = 2},
[250] = {.lex_state = 11, .external_lex_state = 2},
[251] = {.lex_state = 11, .external_lex_state = 2},
[252] = {.lex_state = 11, .external_lex_state = 2},
[253] = {.lex_state = 11, .external_lex_state = 2},
[254] = {.lex_state = 11, .external_lex_state = 2},
[255] = {.lex_state = 11, .external_lex_state = 2},
[256] = {.lex_state = 11, .external_lex_state = 2},
[257] = {.lex_state = 0, .external_lex_state = 2},
[258] = {.lex_state = 0, .external_lex_state = 2},
[259] = {.lex_state = 3, .external_lex_state = 2},
[260] = {.lex_state = 3, .external_lex_state = 2},
[261] = {.lex_state = 3, .external_lex_state = 2},
[262] = {.lex_state = 3, .external_lex_state = 2},
[263] = {.lex_state = 11, .external_lex_state = 2},
[264] = {.lex_state = 3, .external_lex_state = 2},
[265] = {.lex_state = 3, .external_lex_state = 2},
[266] = {.lex_state = 11, .external_lex_state = 2},
[267] = {.lex_state = 11, .external_lex_state = 2},
[268] = {.lex_state = 3, .external_lex_state = 2},
[269] = {.lex_state = 11, .external_lex_state = 2},
[270] = {.lex_state = 3, .external_lex_state = 2},
[271] = {.lex_state = 11, .external_lex_state = 2},
[272] = {.lex_state = 0, .external_lex_state = 2},
[273] = {.lex_state = 38, .external_lex_state = 2},
[274] = {.lex_state = 11, .external_lex_state = 2},
[275] = {.lex_state = 11, .external_lex_state = 2},
[276] = {.lex_state = 2, .external_lex_state = 2},
[277] = {.lex_state = 3, .external_lex_state = 2},
[278] = {.lex_state = 11, .external_lex_state = 2},
[279] = {.lex_state = 11, .external_lex_state = 2},
[280] = {.lex_state = 11, .external_lex_state = 2},
[281] = {.lex_state = 11, .external_lex_state = 2},
[282] = {.lex_state = 11, .external_lex_state = 2},
[283] = {.lex_state = 11, .external_lex_state = 2},
[284] = {.lex_state = 2, .external_lex_state = 2},
[285] = {.lex_state = 2, .external_lex_state = 2},
[286] = {.lex_state = 38, .external_lex_state = 2},
[287] = {.lex_state = 11, .external_lex_state = 2},
[288] = {.lex_state = 11, .external_lex_state = 2},
[289] = {.lex_state = 38, .external_lex_state = 2},
[290] = {.lex_state = 38, .external_lex_state = 2},
[291] = {.lex_state = 11, .external_lex_state = 2},
[292] = {.lex_state = 14, .external_lex_state = 2},
[293] = {.lex_state = 13, .external_lex_state = 2},
[294] = {.lex_state = 13, .external_lex_state = 2},
[295] = {.lex_state = 13, .external_lex_state = 2},
[296] = {.lex_state = 13, .external_lex_state = 2},
[297] = {.lex_state = 13, .external_lex_state = 2},
[298] = {.lex_state = 13, .external_lex_state = 2},
[299] = {.lex_state = 13, .external_lex_state = 2},
[300] = {.lex_state = 13, .external_lex_state = 2},
[301] = {.lex_state = 13, .external_lex_state = 2},
[302] = {.lex_state = 13, .external_lex_state = 2},
[303] = {.lex_state = 13, .external_lex_state = 2},
[304] = {.lex_state = 12, .external_lex_state = 2},
[305] = {.lex_state = 12, .external_lex_state = 2},
[306] = {.lex_state = 12, .external_lex_state = 2},
[307] = {.lex_state = 12, .external_lex_state = 2},
[308] = {.lex_state = 12, .external_lex_state = 2},
[309] = {.lex_state = 12, .external_lex_state = 2},
[310] = {.lex_state = 12, .external_lex_state = 2},
[311] = {.lex_state = 12, .external_lex_state = 2},
[312] = {.lex_state = 12, .external_lex_state = 2},
[313] = {.lex_state = 12, .external_lex_state = 2},
[314] = {.lex_state = 12, .external_lex_state = 2},
[315] = {.lex_state = 12, .external_lex_state = 2},
[316] = {.lex_state = 12, .external_lex_state = 2},
[317] = {.lex_state = 12, .external_lex_state = 2},
[318] = {.lex_state = 12, .external_lex_state = 2},
[319] = {.lex_state = 12, .external_lex_state = 2},
[320] = {.lex_state = 12, .external_lex_state = 2},
[321] = {.lex_state = 12, .external_lex_state = 2},
[322] = {.lex_state = 12, .external_lex_state = 2},
[323] = {.lex_state = 12, .external_lex_state = 2},
[324] = {.lex_state = 12, .external_lex_state = 2},
[325] = {.lex_state = 12, .external_lex_state = 2},
[326] = {.lex_state = 12, .external_lex_state = 2},
[327] = {.lex_state = 12, .external_lex_state = 2},
[328] = {.lex_state = 12, .external_lex_state = 2},
[329] = {.lex_state = 12, .external_lex_state = 2},
[330] = {.lex_state = 12, .external_lex_state = 2},
[331] = {.lex_state = 12, .external_lex_state = 2},
[332] = {.lex_state = 12, .external_lex_state = 2},
[333] = {.lex_state = 12, .external_lex_state = 2},
[334] = {.lex_state = 14, .external_lex_state = 2},
[335] = {.lex_state = 14, .external_lex_state = 2},
[336] = {.lex_state = 14, .external_lex_state = 2},
[337] = {.lex_state = 14, .external_lex_state = 2},
[338] = {.lex_state = 14, .external_lex_state = 2},
[339] = {.lex_state = 14, .external_lex_state = 2},
[340] = {.lex_state = 14, .external_lex_state = 2},
[341] = {.lex_state = 14, .external_lex_state = 2},
[342] = {.lex_state = 14, .external_lex_state = 2},
[343] = {.lex_state = 14, .external_lex_state = 2},
[344] = {.lex_state = 14, .external_lex_state = 2},
[345] = {.lex_state = 14, .external_lex_state = 2},
[346] = {.lex_state = 14, .external_lex_state = 2},
[347] = {.lex_state = 14, .external_lex_state = 2},
[348] = {.lex_state = 14, .external_lex_state = 2},
[349] = {.lex_state = 14, .external_lex_state = 2},
[350] = {.lex_state = 14, .external_lex_state = 2},
[351] = {.lex_state = 14, .external_lex_state = 2},
[352] = {.lex_state = 14, .external_lex_state = 2},
[353] = {.lex_state = 14, .external_lex_state = 2},
[354] = {.lex_state = 14, .external_lex_state = 2},
[355] = {.lex_state = 14, .external_lex_state = 2},
[356] = {.lex_state = 14, .external_lex_state = 2},
[357] = {.lex_state = 14, .external_lex_state = 2},
[358] = {.lex_state = 14, .external_lex_state = 2},
[359] = {.lex_state = 14, .external_lex_state = 2},
[360] = {.lex_state = 14, .external_lex_state = 2},
[361] = {.lex_state = 14, .external_lex_state = 2},
[362] = {.lex_state = 14, .external_lex_state = 2},
[363] = {.lex_state = 14, .external_lex_state = 2},
[364] = {.lex_state = 15, .external_lex_state = 2},
[365] = {.lex_state = 13, .external_lex_state = 2},
[366] = {.lex_state = 13, .external_lex_state = 2},
[367] = {.lex_state = 13, .external_lex_state = 2},
[368] = {.lex_state = 13, .external_lex_state = 2},
[369] = {.lex_state = 13, .external_lex_state = 2},
[370] = {.lex_state = 13, .external_lex_state = 2},
[371] = {.lex_state = 13, .external_lex_state = 2},
[372] = {.lex_state = 13, .external_lex_state = 2},
[373] = {.lex_state = 13, .external_lex_state = 2},
[374] = {.lex_state = 13, .external_lex_state = 2},
[375] = {.lex_state = 13, .external_lex_state = 2},
[376] = {.lex_state = 13, .external_lex_state = 2},
[377] = {.lex_state = 13, .external_lex_state = 2},
[378] = {.lex_state = 13, .external_lex_state = 2},
[379] = {.lex_state = 13, .external_lex_state = 2},
[380] = {.lex_state = 13, .external_lex_state = 2},
[381] = {.lex_state = 13, .external_lex_state = 2},
[382] = {.lex_state = 13, .external_lex_state = 2},
[383] = {.lex_state = 13, .external_lex_state = 2},
[384] = {.lex_state = 15, .external_lex_state = 2},
[385] = {.lex_state = 15, .external_lex_state = 2},
[386] = {.lex_state = 15, .external_lex_state = 2},
[387] = {.lex_state = 15, .external_lex_state = 2},
[388] = {.lex_state = 15, .external_lex_state = 2},
[389] = {.lex_state = 15, .external_lex_state = 2},
[390] = {.lex_state = 15, .external_lex_state = 2},
[391] = {.lex_state = 15, .external_lex_state = 2},
[392] = {.lex_state = 15, .external_lex_state = 2},
[393] = {.lex_state = 15, .external_lex_state = 2},
[394] = {.lex_state = 15, .external_lex_state = 2},
[395] = {.lex_state = 16, .external_lex_state = 2},
[396] = {.lex_state = 16, .external_lex_state = 2},
[397] = {.lex_state = 15, .external_lex_state = 2},
[398] = {.lex_state = 15, .external_lex_state = 2},
[399] = {.lex_state = 16, .external_lex_state = 2},
[400] = {.lex_state = 15, .external_lex_state = 2},
[401] = {.lex_state = 15, .external_lex_state = 2},
[402] = {.lex_state = 13, .external_lex_state = 2},
[403] = {.lex_state = 15, .external_lex_state = 2},
[404] = {.lex_state = 16, .external_lex_state = 2},
[405] = {.lex_state = 12, .external_lex_state = 2},
[406] = {.lex_state = 16, .external_lex_state = 2},
[407] = {.lex_state = 15, .external_lex_state = 2},
[408] = {.lex_state = 15, .external_lex_state = 2},
[409] = {.lex_state = 15, .external_lex_state = 2},
[410] = {.lex_state = 15, .external_lex_state = 2},
[411] = {.lex_state = 16, .external_lex_state = 2},
[412] = {.lex_state = 16, .external_lex_state = 2},
[413] = {.lex_state = 16, .external_lex_state = 2},
[414] = {.lex_state = 14, .external_lex_state = 2},
[415] = {.lex_state = 16, .external_lex_state = 2},
[416] = {.lex_state = 16, .external_lex_state = 2},
[417] = {.lex_state = 16, .external_lex_state = 2},
[418] = {.lex_state = 16, .external_lex_state = 2},
[419] = {.lex_state = 16, .external_lex_state = 2},
[420] = {.lex_state = 16, .external_lex_state = 2},
[421] = {.lex_state = 15, .external_lex_state = 2},
[422] = {.lex_state = 16, .external_lex_state = 2},
[423] = {.lex_state = 16, .external_lex_state = 2},
[424] = {.lex_state = 16, .external_lex_state = 2},
[425] = {.lex_state = 15, .external_lex_state = 2},
[426] = {.lex_state = 15, .external_lex_state = 2},
[427] = {.lex_state = 16, .external_lex_state = 2},
[428] = {.lex_state = 15, .external_lex_state = 2},
[429] = {.lex_state = 15, .external_lex_state = 2},
[430] = {.lex_state = 15, .external_lex_state = 2},
[431] = {.lex_state = 16, .external_lex_state = 2},
[432] = {.lex_state = 13, .external_lex_state = 2},
[433] = {.lex_state = 12, .external_lex_state = 2},
[434] = {.lex_state = 14, .external_lex_state = 2},
[435] = {.lex_state = 15, .external_lex_state = 2},
[436] = {.lex_state = 12, .external_lex_state = 2},
[437] = {.lex_state = 13, .external_lex_state = 2},
[438] = {.lex_state = 16, .external_lex_state = 2},
[439] = {.lex_state = 15, .external_lex_state = 2},
[440] = {.lex_state = 16, .external_lex_state = 2},
[441] = {.lex_state = 16, .external_lex_state = 2},
[442] = {.lex_state = 15, .external_lex_state = 2},
[443] = {.lex_state = 16, .external_lex_state = 2},
[444] = {.lex_state = 16, .external_lex_state = 2},
[445] = {.lex_state = 16, .external_lex_state = 2},
[446] = {.lex_state = 16, .external_lex_state = 2},
[447] = {.lex_state = 16, .external_lex_state = 2},
[448] = {.lex_state = 16, .external_lex_state = 2},
[449] = {.lex_state = 16, .external_lex_state = 2},
[450] = {.lex_state = 16, .external_lex_state = 2},
[451] = {.lex_state = 15, .external_lex_state = 2},
[452] = {.lex_state = 15, .external_lex_state = 2},
[453] = {.lex_state = 15, .external_lex_state = 2},
[454] = {.lex_state = 3, .external_lex_state = 2},
[455] = {.lex_state = 3, .external_lex_state = 2},
[456] = {.lex_state = 3, .external_lex_state = 2},
[457] = {.lex_state = 3, .external_lex_state = 2},
[458] = {.lex_state = 3, .external_lex_state = 2},
[459] = {.lex_state = 3, .external_lex_state = 2},
[460] = {.lex_state = 3, .external_lex_state = 2},
[461] = {.lex_state = 3, .external_lex_state = 2},
[462] = {.lex_state = 3, .external_lex_state = 2},
[463] = {.lex_state = 3, .external_lex_state = 2},
[464] = {.lex_state = 3, .external_lex_state = 2},
[465] = {.lex_state = 3, .external_lex_state = 2},
[466] = {.lex_state = 3, .external_lex_state = 2},
[467] = {.lex_state = 3, .external_lex_state = 2},
[468] = {.lex_state = 3, .external_lex_state = 2},
[469] = {.lex_state = 3, .external_lex_state = 2},
[470] = {.lex_state = 3, .external_lex_state = 2},
[471] = {.lex_state = 3, .external_lex_state = 2},
[472] = {.lex_state = 3, .external_lex_state = 2},
[473] = {.lex_state = 3, .external_lex_state = 2},
[474] = {.lex_state = 3, .external_lex_state = 2},
[475] = {.lex_state = 3, .external_lex_state = 2},
[476] = {.lex_state = 3, .external_lex_state = 2},
[477] = {.lex_state = 3, .external_lex_state = 2},
[478] = {.lex_state = 3, .external_lex_state = 2},
[479] = {.lex_state = 3, .external_lex_state = 2},
[480] = {.lex_state = 3, .external_lex_state = 2},
[481] = {.lex_state = 3, .external_lex_state = 2},
[482] = {.lex_state = 3, .external_lex_state = 2},
[483] = {.lex_state = 3, .external_lex_state = 2},
[484] = {.lex_state = 3, .external_lex_state = 2},
[485] = {.lex_state = 3, .external_lex_state = 2},
[486] = {.lex_state = 3, .external_lex_state = 2},
[487] = {.lex_state = 3, .external_lex_state = 2},
[488] = {.lex_state = 3, .external_lex_state = 2},
[489] = {.lex_state = 3, .external_lex_state = 2},
[490] = {.lex_state = 3, .external_lex_state = 2},
[491] = {.lex_state = 3, .external_lex_state = 2},
[492] = {.lex_state = 3, .external_lex_state = 2},
[493] = {.lex_state = 3, .external_lex_state = 2},
[494] = {.lex_state = 3, .external_lex_state = 2},
[495] = {.lex_state = 3, .external_lex_state = 2},
[496] = {.lex_state = 3, .external_lex_state = 2},
[497] = {.lex_state = 3, .external_lex_state = 2},
[498] = {.lex_state = 3, .external_lex_state = 2},
[499] = {.lex_state = 3, .external_lex_state = 2},
[500] = {.lex_state = 3, .external_lex_state = 2},
[501] = {.lex_state = 3, .external_lex_state = 2},
[502] = {.lex_state = 3, .external_lex_state = 2},
[503] = {.lex_state = 3, .external_lex_state = 2},
[504] = {.lex_state = 3, .external_lex_state = 2},
[505] = {.lex_state = 3, .external_lex_state = 2},
[506] = {.lex_state = 3, .external_lex_state = 2},
[507] = {.lex_state = 3, .external_lex_state = 2},
[508] = {.lex_state = 3, .external_lex_state = 2},
[509] = {.lex_state = 3, .external_lex_state = 2},
[510] = {.lex_state = 3, .external_lex_state = 2},
[511] = {.lex_state = 3, .external_lex_state = 2},
[512] = {.lex_state = 3, .external_lex_state = 2},
[513] = {.lex_state = 3, .external_lex_state = 2},
[514] = {.lex_state = 3, .external_lex_state = 2},
[515] = {.lex_state = 3, .external_lex_state = 2},
[516] = {.lex_state = 3, .external_lex_state = 2},
[517] = {.lex_state = 3, .external_lex_state = 2},
[518] = {.lex_state = 3, .external_lex_state = 2},
[519] = {.lex_state = 3, .external_lex_state = 2},
[520] = {.lex_state = 3, .external_lex_state = 2},
[521] = {.lex_state = 3, .external_lex_state = 2},
[522] = {.lex_state = 3, .external_lex_state = 2},
[523] = {.lex_state = 3, .external_lex_state = 2},
[524] = {.lex_state = 3, .external_lex_state = 2},
[525] = {.lex_state = 3, .external_lex_state = 2},
[526] = {.lex_state = 3, .external_lex_state = 2},
[527] = {.lex_state = 3, .external_lex_state = 2},
[528] = {.lex_state = 3, .external_lex_state = 2},
[529] = {.lex_state = 3, .external_lex_state = 2},
[530] = {.lex_state = 3, .external_lex_state = 2},
[531] = {.lex_state = 3, .external_lex_state = 2},
[532] = {.lex_state = 3, .external_lex_state = 2},
[533] = {.lex_state = 3, .external_lex_state = 2},
[534] = {.lex_state = 3, .external_lex_state = 2},
[535] = {.lex_state = 3, .external_lex_state = 2},
[536] = {.lex_state = 3, .external_lex_state = 2},
[537] = {.lex_state = 3, .external_lex_state = 2},
[538] = {.lex_state = 3, .external_lex_state = 2},
[539] = {.lex_state = 3, .external_lex_state = 2},
[540] = {.lex_state = 3, .external_lex_state = 2},
[541] = {.lex_state = 3, .external_lex_state = 2},
[542] = {.lex_state = 39, .external_lex_state = 2},
[543] = {.lex_state = 39, .external_lex_state = 2},
[544] = {.lex_state = 39, .external_lex_state = 2},
[545] = {.lex_state = 39, .external_lex_state = 2},
[546] = {.lex_state = 39, .external_lex_state = 2},
[547] = {.lex_state = 39, .external_lex_state = 2},
[548] = {.lex_state = 39, .external_lex_state = 2},
[549] = {.lex_state = 39, .external_lex_state = 2},
[550] = {.lex_state = 39, .external_lex_state = 2},
[551] = {.lex_state = 39, .external_lex_state = 2},
[552] = {.lex_state = 39, .external_lex_state = 2},
[553] = {.lex_state = 39, .external_lex_state = 2},
[554] = {.lex_state = 39, .external_lex_state = 2},
[555] = {.lex_state = 39, .external_lex_state = 2},
[556] = {.lex_state = 39, .external_lex_state = 2},
[557] = {.lex_state = 39, .external_lex_state = 2},
[558] = {.lex_state = 39, .external_lex_state = 2},
[559] = {.lex_state = 39, .external_lex_state = 2},
[560] = {.lex_state = 39, .external_lex_state = 2},
[561] = {.lex_state = 39, .external_lex_state = 2},
[562] = {.lex_state = 39, .external_lex_state = 2},
[563] = {.lex_state = 39, .external_lex_state = 2},
[564] = {.lex_state = 39, .external_lex_state = 2},
[565] = {.lex_state = 39, .external_lex_state = 2},
[566] = {.lex_state = 39, .external_lex_state = 2},
[567] = {.lex_state = 39, .external_lex_state = 2},
[568] = {.lex_state = 40, .external_lex_state = 2},
[569] = {.lex_state = 0, .external_lex_state = 2},
[570] = {.lex_state = 0, .external_lex_state = 2},
[571] = {.lex_state = 0, .external_lex_state = 2},
[572] = {.lex_state = 40, .external_lex_state = 2},
[573] = {.lex_state = 40, .external_lex_state = 2},
[574] = {.lex_state = 40, .external_lex_state = 2},
[575] = {.lex_state = 40, .external_lex_state = 2},
[576] = {.lex_state = 0, .external_lex_state = 2},
[577] = {.lex_state = 0, .external_lex_state = 2},
[578] = {.lex_state = 0, .external_lex_state = 2},
[579] = {.lex_state = 0, .external_lex_state = 2},
[580] = {.lex_state = 0, .external_lex_state = 2},
[581] = {.lex_state = 0, .external_lex_state = 2},
[582] = {.lex_state = 0, .external_lex_state = 2},
[583] = {.lex_state = 0, .external_lex_state = 2},
[584] = {.lex_state = 0, .external_lex_state = 2},
[585] = {.lex_state = 40, .external_lex_state = 2},
[586] = {.lex_state = 40, .external_lex_state = 2},
[587] = {.lex_state = 40, .external_lex_state = 2},
[588] = {.lex_state = 40, .external_lex_state = 2},
[589] = {.lex_state = 0, .external_lex_state = 2},
[590] = {.lex_state = 16, .external_lex_state = 2},
[591] = {.lex_state = 0, .external_lex_state = 2},
[592] = {.lex_state = 0, .external_lex_state = 2},
[593] = {.lex_state = 16, .external_lex_state = 2},
[594] = {.lex_state = 16, .external_lex_state = 2},
[595] = {.lex_state = 0, .external_lex_state = 2},
[596] = {.lex_state = 0, .external_lex_state = 2},
[597] = {.lex_state = 40, .external_lex_state = 2},
[598] = {.lex_state = 0, .external_lex_state = 2},
[599] = {.lex_state = 0, .external_lex_state = 2},
[600] = {.lex_state = 40, .external_lex_state = 2},
[601] = {.lex_state = 40, .external_lex_state = 2},
[602] = {.lex_state = 16, .external_lex_state = 2},
[603] = {.lex_state = 40, .external_lex_state = 2},
[604] = {.lex_state = 0, .external_lex_state = 2},
[605] = {.lex_state = 0, .external_lex_state = 2},
[606] = {.lex_state = 0, .external_lex_state = 2},
[607] = {.lex_state = 16, .external_lex_state = 2},
[608] = {.lex_state = 40, .external_lex_state = 2},
[609] = {.lex_state = 16, .external_lex_state = 2},
[610] = {.lex_state = 16, .external_lex_state = 2},
[611] = {.lex_state = 16, .external_lex_state = 2},
[612] = {.lex_state = 0, .external_lex_state = 2},
[613] = {.lex_state = 0, .external_lex_state = 2},
[614] = {.lex_state = 0, .external_lex_state = 2},
[615] = {.lex_state = 0, .external_lex_state = 2},
[616] = {.lex_state = 40, .external_lex_state = 2},
[617] = {.lex_state = 40, .external_lex_state = 2},
[618] = {.lex_state = 40, .external_lex_state = 2},
[619] = {.lex_state = 40, .external_lex_state = 2},
[620] = {.lex_state = 0, .external_lex_state = 2},
[621] = {.lex_state = 0, .external_lex_state = 2},
[622] = {.lex_state = 0, .external_lex_state = 2},
[623] = {.lex_state = 0, .external_lex_state = 2},
[624] = {.lex_state = 0, .external_lex_state = 2},
[625] = {.lex_state = 16, .external_lex_state = 2},
[626] = {.lex_state = 16, .external_lex_state = 2},
[627] = {.lex_state = 16, .external_lex_state = 2},
[628] = {.lex_state = 16, .external_lex_state = 2},
[629] = {.lex_state = 16, .external_lex_state = 2},
[630] = {.lex_state = 0, .external_lex_state = 2},
[631] = {.lex_state = 0, .external_lex_state = 2},
[632] = {.lex_state = 40, .external_lex_state = 2},
[633] = {.lex_state = 40, .external_lex_state = 2},
[634] = {.lex_state = 40, .external_lex_state = 2},
[635] = {.lex_state = 40, .external_lex_state = 2},
[636] = {.lex_state = 16, .external_lex_state = 2},
[637] = {.lex_state = 16, .external_lex_state = 2},
[638] = {.lex_state = 40, .external_lex_state = 2},
[639] = {.lex_state = 0, .external_lex_state = 2},
[640] = {.lex_state = 40, .external_lex_state = 2},
[641] = {.lex_state = 16, .external_lex_state = 2},
[642] = {.lex_state = 16, .external_lex_state = 2},
[643] = {.lex_state = 16, .external_lex_state = 2},
[644] = {.lex_state = 40, .external_lex_state = 2},
[645] = {.lex_state = 0, .external_lex_state = 2},
[646] = {.lex_state = 0, .external_lex_state = 2},
[647] = {.lex_state = 40, .external_lex_state = 2},
[648] = {.lex_state = 16, .external_lex_state = 2},
[649] = {.lex_state = 16, .external_lex_state = 2},
[650] = {.lex_state = 40, .external_lex_state = 2},
[651] = {.lex_state = 0, .external_lex_state = 2},
[652] = {.lex_state = 40, .external_lex_state = 2},
[653] = {.lex_state = 0, .external_lex_state = 2},
[654] = {.lex_state = 0, .external_lex_state = 2},
[655] = {.lex_state = 0, .external_lex_state = 2},
[656] = {.lex_state = 0, .external_lex_state = 2},
[657] = {.lex_state = 0, .external_lex_state = 2},
[658] = {.lex_state = 0, .external_lex_state = 2},
[659] = {.lex_state = 40, .external_lex_state = 2},
[660] = {.lex_state = 0, .external_lex_state = 2},
[661] = {.lex_state = 0, .external_lex_state = 2},
};
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[3][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,
},
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_LBRACE] = ACTIONS(1),
[anon_sym_DOLLARENV] = ACTIONS(1),
2021-06-16 15:37:14 -04:00
[anon_sym_DOLLARCACHE] = ACTIONS(1),
[aux_sym__untrimmed_argument_token1] = 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),
2021-04-10 10:29:19 -04:00
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[sym_bracket_argument] = ACTIONS(1),
[sym_bracket_comment] = ACTIONS(3),
[sym_line_comment] = ACTIONS(3),
2021-04-10 10:29:19 -04:00
},
2021-06-17 16:32:18 -04:00
[1] = {
[sym_source_file] = STATE(656),
[sym_if_command] = STATE(9),
[sym_if_condition] = STATE(164),
[sym_foreach_command] = STATE(152),
[sym_foreach_loop] = STATE(164),
[sym_while_command] = STATE(123),
[sym_while_loop] = STATE(164),
[sym_function_command] = STATE(145),
[sym_function_def] = STATE(164),
[sym_macro_command] = STATE(147),
[sym_macro_def] = STATE(164),
[sym_normal_command] = STATE(164),
[sym__command_invocation] = STATE(164),
[sym__untrimmed_command_invocation] = STATE(164),
[aux_sym_source_file_repeat1] = STATE(164),
[ts_builtin_sym_end] = ACTIONS(5),
[aux_sym__untrimmed_argument_token1] = ACTIONS(7),
[sym_if] = ACTIONS(9),
[sym_foreach] = ACTIONS(11),
[sym_while] = ACTIONS(13),
[sym_function] = ACTIONS(15),
[sym_macro] = ACTIONS(17),
[sym_identifier] = ACTIONS(19),
[sym_bracket_comment] = ACTIONS(3),
[sym_line_comment] = ACTIONS(3),
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] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(27), 1,
sym_endif,
ACTIONS(29), 1,
sym_identifier,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(417), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[66] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(31), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(33), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(242), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[132] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(33), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(251), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[198] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(35), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(37), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(364), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(6), 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,
[264] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(37), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(429), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[330] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(39), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(41), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(383), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[396] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(41), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(377), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[462] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(27), 1,
sym_endif,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(43), 1,
aux_sym__untrimmed_argument_token1,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(440), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[528] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(45), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(47), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(304), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(11), 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,
[594] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(47), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(310), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[660] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(21), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(49), 1,
sym_endif,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(340), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[726] = 18,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(49), 1,
sym_endif,
ACTIONS(51), 1,
aux_sym__untrimmed_argument_token1,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
STATE(334), 1,
sym_endif_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(12), 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,
[792] = 17,
ACTIONS(53), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(56), 1,
sym_if,
ACTIONS(59), 1,
sym_elseif,
ACTIONS(62), 1,
sym_else,
ACTIONS(65), 1,
sym_endif,
ACTIONS(67), 1,
sym_foreach,
ACTIONS(70), 1,
sym_while,
ACTIONS(73), 1,
sym_function,
ACTIONS(76), 1,
sym_macro,
ACTIONS(79), 1,
sym_identifier,
STATE(3), 1,
sym_if_command,
STATE(126), 1,
sym_while_command,
STATE(127), 1,
sym_function_command,
STATE(129), 1,
sym_macro_command,
STATE(144), 1,
sym_foreach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[855] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(96), 1,
anon_sym_RPAREN,
ACTIONS(98), 1,
sym_bracket_argument,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[913] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(100), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(102), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(104), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[971] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(104), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(106), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(18), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1029] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(108), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1087] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(110), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(112), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(57), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1145] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(108), 1,
anon_sym_RPAREN,
ACTIONS(114), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(26), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1203] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(116), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(118), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(61), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1261] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(120), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(122), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(28), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1319] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(124), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(126), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(64), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1377] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(128), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(130), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(31), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1435] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(132), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(134), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(67), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1493] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(136), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
2021-06-17 17:06:32 -04:00
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1551] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(138), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(140), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(70), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1609] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(142), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1667] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(144), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(146), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(73), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1725] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(142), 1,
2021-06-17 17:06:32 -04:00
anon_sym_RPAREN,
ACTIONS(148), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(33), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1783] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(150), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1841] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(150), 1,
anon_sym_RPAREN,
ACTIONS(152), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(34), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
2021-06-17 17:06:32 -04:00
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
2021-06-17 17:06:32 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1899] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(154), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[1957] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(156), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
2021-06-17 17:06:32 -04:00
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
2021-06-17 17:06:32 -04:00
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2015] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(158), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(160), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(36), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2073] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(162), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2131] = 15,
ACTIONS(84), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARENV,
ACTIONS(88), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
2021-06-17 17:06:32 -04:00
anon_sym_DQUOTE,
ACTIONS(94), 1,
2021-06-17 17:06:32 -04:00
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(162), 1,
anon_sym_RPAREN,
ACTIONS(164), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(43), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2189] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(166), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(168), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(46), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2247] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(170), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2305] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(172), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(174), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(48), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2363] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(176), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2421] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(178), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(180), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(39), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2479] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(182), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2537] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(180), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2595] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(184), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(186), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(41), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2653] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(188), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2711] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(188), 1,
anon_sym_RPAREN,
ACTIONS(190), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(51), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2769] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(192), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2827] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(192), 1,
anon_sym_RPAREN,
ACTIONS(194), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(15), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2885] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(186), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[2943] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(196), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3001] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(198), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3059] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(200), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3117] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(202), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(204), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(44), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3175] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(206), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3233] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(208), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(210), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(62), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3291] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(212), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3349] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(212), 1,
anon_sym_RPAREN,
ACTIONS(214), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(102), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3407] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(216), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(218), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(50), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3465] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(220), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3523] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(102), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3581] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(222), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3639] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(224), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(226), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(52), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3697] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(228), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3755] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(228), 1,
anon_sym_RPAREN,
ACTIONS(230), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(106), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3813] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(226), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3871] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(232), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3929] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(232), 1,
anon_sym_RPAREN,
ACTIONS(234), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(108), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[3987] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(222), 1,
anon_sym_RPAREN,
ACTIONS(236), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(77), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4045] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(238), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4103] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(238), 1,
anon_sym_RPAREN,
ACTIONS(240), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(110), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4161] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(242), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(244), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(79), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4219] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(246), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4277] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(246), 1,
anon_sym_RPAREN,
ACTIONS(248), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(111), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4335] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(250), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(252), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(109), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4393] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(254), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(256), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(83), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4451] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(258), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4509] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(260), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(262), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(66), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4567] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(264), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4625] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(264), 1,
anon_sym_RPAREN,
ACTIONS(266), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(98), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4683] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(268), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(270), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(53), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4741] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(270), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4799] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(272), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4857] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(274), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4915] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(276), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[4973] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(278), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(280), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(96), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5031] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(282), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(284), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(84), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5089] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(284), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5147] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(286), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(288), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(82), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5205] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(290), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(292), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(85), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5263] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(292), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5321] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(294), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(296), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(55), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5379] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(298), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5437] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(300), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(302), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(88), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5495] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(304), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(306), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(91), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5553] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(296), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5611] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(272), 1,
anon_sym_RPAREN,
ACTIONS(308), 1,
aux_sym__untrimmed_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(99), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5669] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(310), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5727] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(312), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5785] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(314), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(316), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(93), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5843] = 15,
ACTIONS(321), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(324), 1,
anon_sym_DOLLARENV,
ACTIONS(327), 1,
anon_sym_DOLLARCACHE,
ACTIONS(330), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(333), 1,
anon_sym_DQUOTE,
ACTIONS(336), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(339), 1,
anon_sym_RPAREN,
ACTIONS(341), 1,
sym_bracket_argument,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(318), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5901] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(344), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[5959] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(316), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6017] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(346), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6075] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(348), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(350), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(103), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6133] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(352), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6191] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(354), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(356), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(60), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6249] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(358), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6307] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(356), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6365] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(360), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6423] = 15,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(90), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(92), 1,
anon_sym_DQUOTE,
ACTIONS(94), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(98), 1,
sym_bracket_argument,
ACTIONS(362), 1,
anon_sym_RPAREN,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(215), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(101), 3,
sym_argument,
sym__untrimmed_argument,
aux_sym_if_command_repeat2,
STATE(205), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[6481] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(364), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(366), 1,
sym_endfunction,
ACTIONS(368), 1,
sym_identifier,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(307), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(115), 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,
[6539] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(370), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(372), 1,
sym_endforeach,
ACTIONS(374), 1,
sym_identifier,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(453), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(119), 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,
[6597] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(378), 1,
sym_endwhile,
ACTIONS(380), 1,
sym_identifier,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(312), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[6655] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(366), 1,
sym_endfunction,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(313), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[6713] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(384), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(386), 1,
sym_endmacro,
ACTIONS(388), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(308), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[6771] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(390), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(426), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[6829] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(386), 1,
sym_endmacro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(314), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[6887] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(372), 1,
sym_endforeach,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(428), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[6945] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(396), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(421), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[7003] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(378), 1,
sym_endwhile,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(398), 1,
aux_sym__untrimmed_argument_token1,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(306), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(114), 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,
[7061] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(400), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(402), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(305), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(158), 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,
[7119] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(404), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(406), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(399), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(128), 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,
[7177] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(408), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(419), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7235] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(410), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(344), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[7293] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(412), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(414), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(244), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7351] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(416), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(418), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(245), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7409] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(406), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(420), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[7467] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(420), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(422), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(291), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7525] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(424), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(422), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[7583] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(426), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(428), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(335), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(140), 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,
[7641] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(430), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(432), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(336), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7699] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(434), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(293), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[7757] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(436), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(253), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7815] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(438), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(440), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(337), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[7873] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(410), 1,
sym_endmacro,
ACTIONS(442), 1,
aux_sym__untrimmed_argument_token1,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(292), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(125), 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,
[7931] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(444), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(423), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[7989] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(414), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(254), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[8047] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(418), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(255), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[8105] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(428), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(341), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[8163] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(432), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(342), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[8221] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(440), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(343), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[8279] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(446), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(425), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[8337] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(436), 1,
sym_endforeach,
ACTIONS(448), 1,
aux_sym__untrimmed_argument_token1,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(243), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(134), 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,
[8395] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(424), 1,
sym_endfunction,
ACTIONS(450), 1,
aux_sym__untrimmed_argument_token1,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(395), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(130), 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,
[8453] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(396), 1,
sym_endmacro,
ACTIONS(452), 1,
aux_sym__untrimmed_argument_token1,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(442), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[8511] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(444), 1,
sym_endmacro,
ACTIONS(454), 1,
aux_sym__untrimmed_argument_token1,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(396), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[8569] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(382), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(456), 1,
sym_endfunction,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(374), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[8627] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(376), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(458), 1,
sym_endwhile,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(375), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[8685] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(392), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(422), 1,
sym_endmacro,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(256), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[8743] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(460), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(376), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[8801] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(408), 1,
sym_endforeach,
ACTIONS(462), 1,
aux_sym__untrimmed_argument_token1,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(413), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(124), 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,
[8859] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(446), 1,
sym_endfunction,
ACTIONS(464), 1,
aux_sym__untrimmed_argument_token1,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(451), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(143), 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,
[8917] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(390), 1,
sym_endwhile,
ACTIONS(466), 1,
aux_sym__untrimmed_argument_token1,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(452), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[8975] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(388), 1,
sym_identifier,
ACTIONS(434), 1,
sym_endmacro,
ACTIONS(468), 1,
aux_sym__untrimmed_argument_token1,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
STATE(379), 1,
sym_endmacro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(133), 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,
[9033] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(368), 1,
sym_identifier,
ACTIONS(456), 1,
sym_endfunction,
ACTIONS(470), 1,
aux_sym__untrimmed_argument_token1,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
STATE(380), 1,
sym_endfunction_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[9091] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(380), 1,
sym_identifier,
ACTIONS(458), 1,
sym_endwhile,
ACTIONS(472), 1,
aux_sym__untrimmed_argument_token1,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
STATE(381), 1,
sym_endwhile_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(149), 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,
[9149] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(394), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(402), 1,
sym_endforeach,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(311), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[9207] = 16,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(374), 1,
sym_identifier,
ACTIONS(460), 1,
sym_endforeach,
ACTIONS(474), 1,
aux_sym__untrimmed_argument_token1,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
STATE(382), 1,
sym_endforeach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(151), 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,
[9265] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(488), 1,
anon_sym_RPAREN,
ACTIONS(490), 1,
sym_bracket_argument,
STATE(272), 1,
sym__escape_encoded,
STATE(598), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9318] = 15,
ACTIONS(492), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(495), 1,
sym_if,
ACTIONS(498), 1,
sym_foreach,
ACTIONS(501), 1,
sym_while,
ACTIONS(504), 1,
sym_endwhile,
ACTIONS(506), 1,
sym_function,
ACTIONS(509), 1,
sym_macro,
ACTIONS(512), 1,
sym_identifier,
STATE(7), 1,
sym_if_command,
STATE(155), 1,
sym_macro_command,
STATE(156), 1,
sym_function_command,
STATE(157), 1,
sym_while_command,
STATE(159), 1,
sym_foreach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(161), 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,
[9373] = 15,
ACTIONS(495), 1,
sym_if,
ACTIONS(498), 1,
sym_foreach,
ACTIONS(501), 1,
sym_while,
ACTIONS(504), 1,
sym_endforeach,
ACTIONS(506), 1,
sym_function,
ACTIONS(509), 1,
sym_macro,
ACTIONS(515), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(518), 1,
sym_identifier,
STATE(5), 1,
sym_if_command,
STATE(113), 1,
sym_foreach_command,
STATE(146), 1,
sym_macro_command,
STATE(153), 1,
sym_function_command,
STATE(154), 1,
sym_while_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[9428] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(521), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(579), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9481] = 15,
ACTIONS(9), 1,
sym_if,
ACTIONS(11), 1,
sym_foreach,
ACTIONS(13), 1,
sym_while,
ACTIONS(15), 1,
sym_function,
ACTIONS(17), 1,
sym_macro,
ACTIONS(19), 1,
sym_identifier,
ACTIONS(523), 1,
ts_builtin_sym_end,
ACTIONS(525), 1,
aux_sym__untrimmed_argument_token1,
STATE(9), 1,
sym_if_command,
STATE(123), 1,
sym_while_command,
STATE(145), 1,
sym_function_command,
STATE(147), 1,
sym_macro_command,
STATE(152), 1,
sym_foreach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(168), 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,
[9536] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(527), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(605), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9589] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(529), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(614), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9642] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(531), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(631), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9695] = 15,
ACTIONS(495), 1,
sym_if,
ACTIONS(498), 1,
sym_foreach,
ACTIONS(501), 1,
sym_while,
ACTIONS(506), 1,
sym_function,
ACTIONS(509), 1,
sym_macro,
ACTIONS(533), 1,
ts_builtin_sym_end,
ACTIONS(535), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(538), 1,
sym_identifier,
STATE(9), 1,
sym_if_command,
STATE(123), 1,
sym_while_command,
STATE(145), 1,
sym_function_command,
STATE(147), 1,
sym_macro_command,
STATE(152), 1,
sym_foreach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(168), 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,
[9750] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(541), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(624), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9803] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(543), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(661), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9856] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(545), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(591), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9909] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(547), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(596), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[9962] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(549), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(595), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10015] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(551), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(651), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10068] = 15,
ACTIONS(495), 1,
sym_if,
ACTIONS(498), 1,
sym_foreach,
ACTIONS(501), 1,
sym_while,
ACTIONS(504), 1,
sym_endmacro,
ACTIONS(506), 1,
sym_function,
ACTIONS(509), 1,
sym_macro,
ACTIONS(553), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(556), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(131), 1,
sym_foreach_command,
STATE(132), 1,
sym_while_command,
STATE(135), 1,
sym_function_command,
STATE(136), 1,
sym_macro_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(175), 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,
[10123] = 14,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(484), 1,
anon_sym_DQUOTE,
ACTIONS(486), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(490), 1,
sym_bracket_argument,
ACTIONS(559), 1,
anon_sym_RPAREN,
STATE(272), 1,
sym__escape_encoded,
STATE(623), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(570), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(211), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10176] = 15,
ACTIONS(495), 1,
sym_if,
ACTIONS(498), 1,
sym_foreach,
ACTIONS(501), 1,
sym_while,
ACTIONS(504), 1,
sym_endfunction,
ACTIONS(506), 1,
sym_function,
ACTIONS(509), 1,
sym_macro,
ACTIONS(561), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(564), 1,
sym_identifier,
STATE(10), 1,
sym_if_command,
STATE(112), 1,
sym_function_command,
STATE(116), 1,
sym_macro_command,
STATE(121), 1,
sym_while_command,
STATE(122), 1,
sym_foreach_command,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(177), 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,
[10231] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(585), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10281] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(632), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10331] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(572), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10381] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(600), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10431] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(650), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10481] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(573), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10531] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(619), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10581] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(574), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10631] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(616), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10681] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(635), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10731] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(634), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10781] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(652), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10831] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(618), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10881] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(608), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10931] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(575), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[10981] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(633), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11031] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(617), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11081] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(586), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11131] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(587), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11181] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(588), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11231] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(647), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11281] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(659), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11331] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(601), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11381] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(568), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11431] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(603), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11481] = 13,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(575), 1,
anon_sym_DQUOTE,
ACTIONS(577), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(579), 1,
sym_bracket_argument,
STATE(224), 1,
sym__escape_encoded,
STATE(597), 1,
sym_argument,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(638), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(213), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11531] = 10,
ACTIONS(584), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(587), 1,
anon_sym_DOLLARENV,
ACTIONS(590), 1,
anon_sym_DOLLARCACHE,
ACTIONS(595), 1,
aux_sym_unquoted_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(204), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(593), 4,
sym_bracket_argument,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
ACTIONS(581), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11574] = 10,
ACTIONS(84), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(86), 1,
anon_sym_DOLLARENV,
ACTIONS(88), 1,
anon_sym_DOLLARCACHE,
ACTIONS(600), 1,
aux_sym_unquoted_argument_token1,
STATE(222), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(204), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(217), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(598), 4,
sym_bracket_argument,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
ACTIONS(82), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11617] = 11,
ACTIONS(604), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(606), 1,
anon_sym_DOLLARENV,
ACTIONS(608), 1,
anon_sym_DOLLARCACHE,
ACTIONS(610), 1,
anon_sym_DQUOTE,
ACTIONS(612), 1,
aux_sym_quoted_element_token1,
STATE(234), 1,
sym__escape_encoded,
STATE(604), 1,
sym_quoted_element,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(212), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
STATE(246), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(602), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11660] = 11,
ACTIONS(604), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(606), 1,
anon_sym_DOLLARENV,
ACTIONS(608), 1,
anon_sym_DOLLARCACHE,
ACTIONS(612), 1,
aux_sym_quoted_element_token1,
ACTIONS(614), 1,
anon_sym_DQUOTE,
STATE(234), 1,
sym__escape_encoded,
STATE(584), 1,
sym_quoted_element,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(212), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
STATE(246), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(602), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11703] = 11,
ACTIONS(604), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(606), 1,
anon_sym_DOLLARENV,
ACTIONS(608), 1,
anon_sym_DOLLARCACHE,
ACTIONS(612), 1,
aux_sym_quoted_element_token1,
ACTIONS(616), 1,
anon_sym_DQUOTE,
STATE(234), 1,
sym__escape_encoded,
STATE(592), 1,
sym_quoted_element,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(212), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
STATE(246), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(602), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11746] = 10,
ACTIONS(593), 1,
anon_sym_RPAREN,
ACTIONS(621), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(624), 1,
anon_sym_DOLLARENV,
ACTIONS(627), 1,
anon_sym_DOLLARCACHE,
ACTIONS(630), 1,
aux_sym_unquoted_argument_token1,
STATE(272), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(209), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(618), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11786] = 10,
ACTIONS(636), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(639), 1,
anon_sym_DOLLARENV,
ACTIONS(642), 1,
anon_sym_DOLLARCACHE,
ACTIONS(645), 1,
anon_sym_DQUOTE,
ACTIONS(647), 1,
aux_sym_quoted_element_token1,
STATE(234), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(210), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
STATE(246), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(633), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11826] = 10,
ACTIONS(478), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(480), 1,
anon_sym_DOLLARENV,
ACTIONS(482), 1,
anon_sym_DOLLARCACHE,
ACTIONS(598), 1,
anon_sym_RPAREN,
ACTIONS(650), 1,
aux_sym_unquoted_argument_token1,
STATE(272), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(209), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(235), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(476), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11866] = 10,
ACTIONS(604), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(606), 1,
anon_sym_DOLLARENV,
ACTIONS(608), 1,
anon_sym_DOLLARCACHE,
ACTIONS(652), 1,
anon_sym_DQUOTE,
ACTIONS(654), 1,
aux_sym_quoted_element_token1,
STATE(234), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(210), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_quoted_element_repeat1,
STATE(246), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(602), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11906] = 10,
ACTIONS(569), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(571), 1,
anon_sym_DOLLARENV,
ACTIONS(573), 1,
anon_sym_DOLLARCACHE,
ACTIONS(656), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(658), 1,
aux_sym_else_command_token1,
STATE(224), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(214), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(567), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11946] = 10,
ACTIONS(663), 1,
anon_sym_DOLLAR_LBRACE,
ACTIONS(666), 1,
anon_sym_DOLLARENV,
ACTIONS(669), 1,
anon_sym_DOLLARCACHE,
ACTIONS(672), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(675), 1,
aux_sym_else_command_token1,
STATE(224), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(214), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_unquoted_argument_repeat1,
STATE(273), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(660), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[11986] = 3,
ACTIONS(679), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(677), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12008] = 3,
ACTIONS(683), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(681), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12030] = 3,
ACTIONS(687), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(685), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12052] = 3,
ACTIONS(691), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(689), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12074] = 3,
ACTIONS(695), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(693), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12096] = 3,
ACTIONS(699), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(697), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12118] = 3,
ACTIONS(703), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(701), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12140] = 3,
ACTIONS(707), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(705), 12,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
aux_sym__untrimmed_argument_token1,
anon_sym_DQUOTE,
anon_sym_RPAREN,
[12162] = 3,
ACTIONS(709), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(711), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12181] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(707), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(705), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
[12200] = 3,
ACTIONS(713), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(715), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12219] = 3,
ACTIONS(717), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(719), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12238] = 3,
ACTIONS(721), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(723), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12257] = 3,
ACTIONS(725), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(727), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12276] = 6,
ACTIONS(732), 1,
aux_sym_variable_token1,
ACTIONS(735), 1,
anon_sym_RBRACE,
STATE(454), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(229), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(729), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12301] = 3,
ACTIONS(737), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(739), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12320] = 3,
ACTIONS(741), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(743), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12339] = 3,
ACTIONS(745), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(747), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12358] = 3,
ACTIONS(749), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(751), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12377] = 3,
ACTIONS(707), 1,
aux_sym_quoted_element_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(705), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_DQUOTE,
[12396] = 3,
ACTIONS(687), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(685), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_RPAREN,
[12415] = 3,
ACTIONS(753), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(755), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12434] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(629), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12459] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(628), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12484] = 6,
ACTIONS(761), 1,
aux_sym_variable_token1,
ACTIONS(763), 1,
anon_sym_RBRACE,
STATE(454), 1,
sym__escape_encoded,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(229), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12509] = 3,
ACTIONS(765), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(767), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12528] = 3,
ACTIONS(769), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(771), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12547] = 3,
ACTIONS(773), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(775), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12566] = 3,
ACTIONS(777), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(779), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12585] = 3,
ACTIONS(781), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(783), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12604] = 3,
ACTIONS(785), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(787), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12623] = 3,
ACTIONS(687), 1,
aux_sym_quoted_element_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(685), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_DQUOTE,
[12642] = 3,
ACTIONS(789), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(791), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12661] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(593), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12686] = 3,
ACTIONS(691), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(689), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_RPAREN,
[12705] = 3,
ACTIONS(793), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(795), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12724] = 3,
ACTIONS(797), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(799), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12743] = 3,
ACTIONS(801), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(803), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12762] = 3,
ACTIONS(805), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(807), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12781] = 3,
ACTIONS(809), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(811), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12800] = 3,
ACTIONS(813), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(815), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12819] = 3,
ACTIONS(817), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(819), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12838] = 3,
ACTIONS(699), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(697), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_RPAREN,
[12857] = 3,
ACTIONS(703), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(701), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_RPAREN,
[12876] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(594), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12901] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(602), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12926] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(607), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12951] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(590), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[12976] = 3,
ACTIONS(821), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(823), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[12995] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(610), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[13020] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(609), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[13045] = 3,
ACTIONS(825), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(827), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13064] = 3,
ACTIONS(829), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(831), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13083] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(641), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[13108] = 3,
ACTIONS(833), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(835), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13127] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(626), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[13152] = 3,
ACTIONS(837), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(839), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13171] = 3,
ACTIONS(707), 1,
aux_sym_unquoted_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(705), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_RPAREN,
[13190] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(687), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(685), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
[13209] = 3,
ACTIONS(841), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(843), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13228] = 3,
ACTIONS(845), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(847), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13247] = 3,
ACTIONS(691), 1,
aux_sym_quoted_element_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(689), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_DQUOTE,
[13266] = 6,
ACTIONS(759), 1,
aux_sym_variable_token1,
STATE(454), 1,
sym__escape_encoded,
STATE(625), 1,
sym_variable,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
STATE(239), 2,
sym_escape_sequence,
aux_sym_variable_repeat1,
ACTIONS(757), 5,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
[13291] = 3,
ACTIONS(849), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(851), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13310] = 3,
ACTIONS(853), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(855), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13329] = 3,
ACTIONS(857), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(859), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13348] = 3,
ACTIONS(861), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(863), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13367] = 3,
ACTIONS(865), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(867), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13386] = 3,
ACTIONS(869), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(871), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13405] = 3,
ACTIONS(699), 1,
aux_sym_quoted_element_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(697), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_DQUOTE,
[13424] = 3,
ACTIONS(703), 1,
aux_sym_quoted_element_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(701), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
anon_sym_DQUOTE,
[13443] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(691), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(689), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
[13462] = 3,
ACTIONS(873), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(875), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13481] = 3,
ACTIONS(877), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(879), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13500] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(699), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(697), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
[13519] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(703), 2,
aux_sym_unquoted_argument_token1,
aux_sym_else_command_token1,
ACTIONS(701), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
anon_sym_DOLLAR_LBRACE,
anon_sym_DOLLARENV,
anon_sym_DOLLARCACHE,
[13538] = 3,
ACTIONS(881), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(883), 9,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[13557] = 3,
ACTIONS(881), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(883), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[13574] = 3,
ACTIONS(817), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13591] = 3,
ACTIONS(861), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(863), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13608] = 3,
ACTIONS(865), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(867), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13625] = 3,
ACTIONS(869), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(871), 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,
[13642] = 3,
ACTIONS(873), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(875), 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,
[13659] = 3,
ACTIONS(877), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(879), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13676] = 3,
ACTIONS(837), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13693] = 3,
ACTIONS(801), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13710] = 3,
ACTIONS(713), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13727] = 3,
ACTIONS(717), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13744] = 3,
ACTIONS(721), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[13761] = 3,
ACTIONS(773), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13778] = 3,
ACTIONS(777), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(779), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13795] = 3,
ACTIONS(781), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(783), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13812] = 3,
ACTIONS(785), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13829] = 3,
ACTIONS(881), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(883), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13846] = 3,
ACTIONS(793), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(795), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13863] = 3,
ACTIONS(797), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13880] = 3,
ACTIONS(805), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13897] = 3,
ACTIONS(809), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13914] = 3,
ACTIONS(813), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13931] = 3,
ACTIONS(817), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13948] = 3,
ACTIONS(821), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13965] = 3,
ACTIONS(825), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(827), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[13982] = 3,
ACTIONS(829), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(831), 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,
[13999] = 3,
ACTIONS(833), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(835), 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,
[14016] = 3,
ACTIONS(841), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(843), 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,
[14033] = 3,
ACTIONS(845), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(847), 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,
[14050] = 3,
ACTIONS(849), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(851), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14067] = 3,
ACTIONS(853), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[14084] = 3,
ACTIONS(857), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(859), 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,
[14101] = 3,
ACTIONS(861), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(863), 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,
[14118] = 3,
ACTIONS(865), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(867), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14135] = 3,
ACTIONS(869), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(871), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14152] = 3,
ACTIONS(873), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(875), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14169] = 3,
ACTIONS(877), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(879), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14186] = 3,
ACTIONS(837), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14203] = 3,
ACTIONS(801), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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,
[14220] = 3,
ACTIONS(713), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14237] = 3,
ACTIONS(717), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14254] = 3,
ACTIONS(721), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[14271] = 3,
ACTIONS(773), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14288] = 3,
ACTIONS(777), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(779), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14305] = 3,
ACTIONS(781), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(783), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14322] = 3,
ACTIONS(785), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14339] = 3,
ACTIONS(885), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(887), 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_macro,
sym_endmacro,
2021-06-17 16:32:18 -04:00
sym_identifier,
[14356] = 3,
ACTIONS(793), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(795), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14373] = 3,
ACTIONS(797), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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_macro,
sym_endmacro,
2021-06-17 16:32:18 -04:00
sym_identifier,
[14390] = 3,
ACTIONS(805), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(807), 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_macro,
sym_endmacro,
2021-06-17 16:32:18 -04:00
sym_identifier,
[14407] = 3,
ACTIONS(809), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14424] = 3,
ACTIONS(813), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14441] = 3,
ACTIONS(817), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14458] = 3,
ACTIONS(821), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14475] = 3,
ACTIONS(825), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(827), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14492] = 3,
ACTIONS(829), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14509] = 3,
ACTIONS(833), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14526] = 3,
ACTIONS(841), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14543] = 3,
ACTIONS(845), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14560] = 3,
ACTIONS(849), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(851), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14577] = 3,
ACTIONS(853), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14594] = 3,
ACTIONS(857), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(859), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14611] = 3,
ACTIONS(861), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(863), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14628] = 3,
ACTIONS(865), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(867), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14645] = 3,
ACTIONS(869), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(871), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14662] = 3,
ACTIONS(873), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(875), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14679] = 3,
ACTIONS(877), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(879), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14696] = 3,
ACTIONS(837), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14713] = 3,
ACTIONS(801), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14730] = 3,
ACTIONS(713), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14747] = 3,
ACTIONS(717), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14764] = 3,
ACTIONS(721), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[14781] = 3,
ACTIONS(773), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[14798] = 3,
ACTIONS(853), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14815] = 3,
ACTIONS(849), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(851), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14832] = 3,
ACTIONS(845), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14849] = 3,
ACTIONS(841), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14866] = 3,
ACTIONS(833), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14883] = 3,
ACTIONS(829), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14900] = 3,
ACTIONS(825), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(827), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14917] = 3,
ACTIONS(821), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14934] = 3,
ACTIONS(857), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(859), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14951] = 3,
ACTIONS(813), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14968] = 3,
ACTIONS(809), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[14985] = 3,
ACTIONS(805), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15002] = 3,
ACTIONS(797), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15019] = 3,
ACTIONS(793), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(795), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15036] = 3,
ACTIONS(881), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(883), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15053] = 3,
ACTIONS(785), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15070] = 3,
ACTIONS(781), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(783), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15087] = 3,
ACTIONS(777), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(779), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15104] = 3,
ACTIONS(773), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(775), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15121] = 3,
ACTIONS(721), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(723), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15138] = 3,
ACTIONS(717), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(719), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15155] = 3,
ACTIONS(713), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(715), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15172] = 3,
ACTIONS(801), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(803), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15189] = 3,
ACTIONS(837), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(839), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15206] = 3,
ACTIONS(877), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(879), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15223] = 3,
ACTIONS(873), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(875), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15240] = 3,
ACTIONS(869), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(871), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15257] = 3,
ACTIONS(865), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(867), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15274] = 3,
ACTIONS(861), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(863), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15291] = 3,
ACTIONS(857), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(859), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15308] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(785), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(787), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15325] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(881), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(883), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15342] = 3,
ACTIONS(853), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(855), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15359] = 3,
ACTIONS(849), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(851), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15376] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(781), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(783), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15393] = 3,
ACTIONS(845), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(847), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15410] = 3,
ACTIONS(889), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(891), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15427] = 3,
ACTIONS(893), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(895), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15444] = 3,
ACTIONS(841), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(843), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15461] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(849), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(851), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15478] = 3,
ACTIONS(897), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(899), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[15495] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(845), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(847), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15512] = 3,
ACTIONS(833), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(835), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15529] = 3,
ACTIONS(829), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(831), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15546] = 3,
ACTIONS(825), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(827), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15563] = 3,
ACTIONS(821), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(823), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15580] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(721), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(723), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15597] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(717), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(719), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15614] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(777), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(779), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15631] = 3,
ACTIONS(901), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(903), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[15648] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(713), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(715), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15665] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(793), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(795), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15682] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(797), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(799), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15699] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(801), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(803), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15716] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(805), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(807), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15733] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(809), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(811), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15750] = 3,
ACTIONS(817), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(819), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15767] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(813), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(815), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15784] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(817), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(819), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15801] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(837), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(839), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15818] = 3,
ACTIONS(813), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(815), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15835] = 3,
ACTIONS(809), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(811), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15852] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(877), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(879), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15869] = 3,
ACTIONS(805), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(807), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15886] = 3,
ACTIONS(797), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(799), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15903] = 3,
ACTIONS(905), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(907), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15920] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(873), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(875), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[15937] = 3,
ACTIONS(909), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(911), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[15954] = 3,
ACTIONS(913), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(915), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[15971] = 3,
ACTIONS(917), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(919), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_identifier,
[15988] = 3,
ACTIONS(793), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(795), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16005] = 3,
ACTIONS(921), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(923), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_identifier,
[16022] = 3,
ACTIONS(925), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(927), 7,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_identifier,
[16039] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(833), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(835), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16056] = 3,
ACTIONS(929), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(931), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16073] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(773), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(775), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16090] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(841), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(843), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16107] = 3,
ACTIONS(881), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(883), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16124] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(869), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(871), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16141] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(865), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(867), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16158] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(861), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(863), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16175] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(829), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(831), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16192] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(821), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(823), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16209] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(857), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(859), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16226] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(853), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(855), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16243] = 3,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(825), 2,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(827), 6,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16260] = 3,
ACTIONS(785), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(787), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16277] = 3,
ACTIONS(781), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(783), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16294] = 3,
ACTIONS(777), 1,
aux_sym__untrimmed_argument_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(779), 7,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_identifier,
[16311] = 2,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
ACTIONS(705), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
sym__escape_semicolon,
aux_sym_variable_token1,
anon_sym_RBRACE,
[16325] = 4,
ACTIONS(933), 1,
aux_sym_if_command_token1,
ACTIONS(935), 1,
anon_sym_LPAREN,
STATE(529), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16339] = 4,
ACTIONS(937), 1,
aux_sym_if_command_token1,
ACTIONS(939), 1,
anon_sym_LPAREN,
STATE(486), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16353] = 4,
ACTIONS(941), 1,
aux_sym_if_command_token1,
ACTIONS(943), 1,
anon_sym_LPAREN,
STATE(463), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16367] = 4,
ACTIONS(945), 1,
aux_sym_if_command_token1,
ACTIONS(947), 1,
anon_sym_LPAREN,
STATE(464), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16381] = 4,
ACTIONS(949), 1,
aux_sym_if_command_token1,
ACTIONS(951), 1,
anon_sym_LPAREN,
STATE(465), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16395] = 4,
ACTIONS(953), 1,
aux_sym_if_command_token1,
ACTIONS(955), 1,
anon_sym_LPAREN,
STATE(466), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16409] = 4,
ACTIONS(957), 1,
aux_sym_if_command_token1,
ACTIONS(959), 1,
anon_sym_LPAREN,
STATE(467), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16423] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(963), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16437] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(965), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16451] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(967), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16465] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(969), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16479] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(971), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16493] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(973), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16507] = 4,
ACTIONS(975), 1,
aux_sym_if_command_token1,
ACTIONS(977), 1,
anon_sym_LPAREN,
STATE(522), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16521] = 4,
ACTIONS(979), 1,
aux_sym_if_command_token1,
ACTIONS(981), 1,
anon_sym_LPAREN,
STATE(520), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16535] = 4,
ACTIONS(983), 1,
aux_sym_if_command_token1,
ACTIONS(985), 1,
anon_sym_LPAREN,
STATE(518), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16549] = 4,
ACTIONS(987), 1,
aux_sym_if_command_token1,
ACTIONS(989), 1,
anon_sym_LPAREN,
STATE(516), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16563] = 4,
ACTIONS(991), 1,
aux_sym_if_command_token1,
ACTIONS(993), 1,
anon_sym_LPAREN,
STATE(513), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16577] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(995), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16591] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(997), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16605] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(999), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16619] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1001), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16633] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1003), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16647] = 4,
ACTIONS(1005), 1,
aux_sym_if_command_token1,
ACTIONS(1007), 1,
anon_sym_LPAREN,
STATE(473), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16661] = 4,
ACTIONS(1009), 1,
aux_sym_if_command_token1,
ACTIONS(1011), 1,
anon_sym_LPAREN,
STATE(474), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16675] = 4,
ACTIONS(1013), 1,
aux_sym_if_command_token1,
ACTIONS(1015), 1,
anon_sym_LPAREN,
STATE(475), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16689] = 4,
ACTIONS(1017), 1,
aux_sym_if_command_token1,
ACTIONS(1019), 1,
anon_sym_LPAREN,
STATE(476), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16703] = 4,
ACTIONS(1021), 1,
aux_sym_if_command_token1,
ACTIONS(1023), 1,
anon_sym_LPAREN,
STATE(477), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16717] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1025), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16731] = 4,
ACTIONS(1027), 1,
aux_sym_if_command_token1,
ACTIONS(1029), 1,
anon_sym_LPAREN,
STATE(483), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16745] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1031), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16759] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1033), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16773] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1035), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16787] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1037), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16801] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1039), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16815] = 4,
ACTIONS(1041), 1,
aux_sym_if_command_token1,
ACTIONS(1043), 1,
anon_sym_LPAREN,
STATE(485), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16829] = 4,
ACTIONS(1045), 1,
aux_sym_if_command_token1,
ACTIONS(1047), 1,
anon_sym_LPAREN,
STATE(487), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16843] = 4,
ACTIONS(1049), 1,
aux_sym_if_command_token1,
ACTIONS(1051), 1,
anon_sym_LPAREN,
STATE(488), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16857] = 4,
ACTIONS(1053), 1,
aux_sym_if_command_token1,
ACTIONS(1055), 1,
anon_sym_LPAREN,
STATE(489), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16871] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1057), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16885] = 4,
ACTIONS(1059), 1,
aux_sym_if_command_token1,
ACTIONS(1061), 1,
anon_sym_LPAREN,
STATE(494), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16899] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1063), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16913] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1065), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16927] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1067), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16941] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1069), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16955] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1071), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16969] = 4,
ACTIONS(1073), 1,
aux_sym_if_command_token1,
ACTIONS(1075), 1,
anon_sym_LPAREN,
STATE(496), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16983] = 4,
ACTIONS(1077), 1,
aux_sym_if_command_token1,
ACTIONS(1079), 1,
anon_sym_LPAREN,
STATE(497), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[16997] = 4,
ACTIONS(1081), 1,
aux_sym_if_command_token1,
ACTIONS(1083), 1,
anon_sym_LPAREN,
STATE(498), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17011] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1085), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17025] = 4,
ACTIONS(1087), 1,
aux_sym_if_command_token1,
ACTIONS(1089), 1,
anon_sym_LPAREN,
STATE(499), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17039] = 4,
ACTIONS(1091), 1,
aux_sym_if_command_token1,
ACTIONS(1093), 1,
anon_sym_LPAREN,
STATE(500), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17053] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1095), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17067] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1097), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17081] = 4,
ACTIONS(1099), 1,
aux_sym_if_command_token1,
ACTIONS(1101), 1,
anon_sym_LPAREN,
STATE(508), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17095] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1103), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17109] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1105), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17123] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1107), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17137] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1109), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17151] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1111), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17165] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1113), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17179] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1115), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17193] = 4,
ACTIONS(1117), 1,
aux_sym_if_command_token1,
ACTIONS(1119), 1,
anon_sym_LPAREN,
STATE(510), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17207] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1121), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17221] = 4,
ACTIONS(1123), 1,
aux_sym_if_command_token1,
ACTIONS(1125), 1,
anon_sym_LPAREN,
STATE(511), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17235] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1127), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17249] = 4,
ACTIONS(1129), 1,
aux_sym_if_command_token1,
ACTIONS(1131), 1,
anon_sym_LPAREN,
STATE(512), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17263] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1133), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17277] = 4,
ACTIONS(1135), 1,
aux_sym_if_command_token1,
ACTIONS(1137), 1,
anon_sym_LPAREN,
STATE(514), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17291] = 4,
ACTIONS(1139), 1,
aux_sym_if_command_token1,
ACTIONS(1141), 1,
anon_sym_LPAREN,
STATE(515), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17305] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1143), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17319] = 4,
ACTIONS(1145), 1,
aux_sym_if_command_token1,
ACTIONS(1147), 1,
anon_sym_LPAREN,
STATE(525), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17333] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1149), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17347] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1151), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17361] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1153), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17375] = 4,
ACTIONS(1155), 1,
aux_sym_if_command_token1,
ACTIONS(1158), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17389] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1160), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17403] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1162), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17417] = 4,
ACTIONS(1164), 1,
aux_sym_if_command_token1,
ACTIONS(1166), 1,
anon_sym_LPAREN,
STATE(527), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17431] = 4,
ACTIONS(1168), 1,
aux_sym_if_command_token1,
ACTIONS(1170), 1,
anon_sym_LPAREN,
STATE(462), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17445] = 4,
ACTIONS(1172), 1,
aux_sym_if_command_token1,
ACTIONS(1174), 1,
anon_sym_LPAREN,
STATE(528), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17459] = 4,
ACTIONS(1176), 1,
aux_sym_if_command_token1,
ACTIONS(1178), 1,
anon_sym_LPAREN,
STATE(531), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17473] = 4,
ACTIONS(1180), 1,
aux_sym_if_command_token1,
ACTIONS(1182), 1,
anon_sym_LPAREN,
STATE(532), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17487] = 4,
ACTIONS(961), 1,
aux_sym_if_command_token1,
ACTIONS(1184), 1,
anon_sym_LPAREN,
STATE(530), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17501] = 4,
ACTIONS(1186), 1,
aux_sym_if_command_token1,
ACTIONS(1188), 1,
anon_sym_LPAREN,
STATE(504), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17515] = 4,
ACTIONS(1190), 1,
aux_sym_if_command_token1,
ACTIONS(1192), 1,
anon_sym_LPAREN,
STATE(538), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17529] = 4,
ACTIONS(1194), 1,
aux_sym_if_command_token1,
ACTIONS(1196), 1,
anon_sym_LPAREN,
STATE(507), 1,
aux_sym_if_command_repeat1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17543] = 3,
ACTIONS(1198), 1,
anon_sym_RPAREN,
ACTIONS(1200), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17554] = 3,
ACTIONS(1202), 1,
anon_sym_RPAREN,
ACTIONS(1204), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17565] = 3,
ACTIONS(1206), 1,
anon_sym_RPAREN,
ACTIONS(1208), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17576] = 3,
ACTIONS(1210), 1,
anon_sym_RPAREN,
ACTIONS(1212), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17587] = 3,
ACTIONS(1214), 1,
anon_sym_RPAREN,
ACTIONS(1216), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17598] = 3,
ACTIONS(1218), 1,
anon_sym_RPAREN,
ACTIONS(1220), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17609] = 3,
ACTIONS(1222), 1,
anon_sym_RPAREN,
ACTIONS(1224), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17620] = 3,
ACTIONS(1226), 1,
anon_sym_RPAREN,
ACTIONS(1228), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17631] = 3,
ACTIONS(1230), 1,
anon_sym_RPAREN,
ACTIONS(1232), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17642] = 3,
ACTIONS(1234), 1,
anon_sym_RPAREN,
ACTIONS(1236), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17653] = 3,
ACTIONS(1238), 1,
anon_sym_RPAREN,
ACTIONS(1240), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17664] = 3,
ACTIONS(1242), 1,
anon_sym_RPAREN,
ACTIONS(1244), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17675] = 3,
ACTIONS(1246), 1,
anon_sym_RPAREN,
ACTIONS(1248), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17686] = 3,
ACTIONS(1250), 1,
anon_sym_RPAREN,
ACTIONS(1252), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17697] = 3,
ACTIONS(1254), 1,
anon_sym_RPAREN,
ACTIONS(1256), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17708] = 3,
ACTIONS(1258), 1,
anon_sym_RPAREN,
ACTIONS(1260), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17719] = 3,
ACTIONS(1262), 1,
anon_sym_RPAREN,
ACTIONS(1264), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17730] = 3,
ACTIONS(1266), 1,
anon_sym_RPAREN,
ACTIONS(1268), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17741] = 3,
ACTIONS(1270), 1,
anon_sym_RPAREN,
ACTIONS(1272), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17752] = 3,
ACTIONS(1274), 1,
anon_sym_RPAREN,
ACTIONS(1276), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17763] = 3,
ACTIONS(1278), 1,
anon_sym_RPAREN,
ACTIONS(1280), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17774] = 3,
ACTIONS(1282), 1,
anon_sym_RPAREN,
ACTIONS(1284), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17785] = 3,
ACTIONS(1286), 1,
anon_sym_RPAREN,
ACTIONS(1288), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17796] = 3,
ACTIONS(1290), 1,
anon_sym_RPAREN,
ACTIONS(1292), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17807] = 3,
ACTIONS(1294), 1,
anon_sym_RPAREN,
ACTIONS(1296), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17818] = 3,
ACTIONS(1298), 1,
anon_sym_RPAREN,
ACTIONS(1300), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17829] = 2,
ACTIONS(1302), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17837] = 2,
ACTIONS(1304), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17845] = 2,
ACTIONS(677), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17853] = 2,
ACTIONS(693), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17861] = 2,
ACTIONS(1306), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17869] = 2,
ACTIONS(1308), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17877] = 2,
ACTIONS(1310), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17885] = 2,
ACTIONS(1312), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17893] = 2,
ACTIONS(1314), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17901] = 2,
ACTIONS(1316), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17909] = 2,
ACTIONS(681), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17917] = 2,
ACTIONS(488), 1,
2021-06-17 17:06:32 -04:00
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17925] = 2,
ACTIONS(1318), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17933] = 2,
ACTIONS(1320), 1,
2021-06-17 17:06:32 -04:00
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17941] = 2,
ACTIONS(1322), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17949] = 2,
ACTIONS(1324), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17957] = 2,
ACTIONS(1326), 1,
anon_sym_DQUOTE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17965] = 2,
ACTIONS(1328), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17973] = 2,
ACTIONS(1330), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17981] = 2,
ACTIONS(1332), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17989] = 2,
ACTIONS(1334), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[17997] = 2,
ACTIONS(1336), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18005] = 2,
ACTIONS(1338), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18013] = 2,
ACTIONS(1340), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18021] = 2,
ACTIONS(1342), 1,
anon_sym_DQUOTE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18029] = 2,
ACTIONS(1344), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18037] = 2,
ACTIONS(1346), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18045] = 2,
ACTIONS(543), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18053] = 2,
ACTIONS(545), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18061] = 2,
ACTIONS(1348), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18069] = 2,
ACTIONS(1350), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18077] = 2,
ACTIONS(1352), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18085] = 2,
ACTIONS(1354), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18093] = 2,
ACTIONS(1356), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18101] = 2,
ACTIONS(1358), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18109] = 2,
ACTIONS(1360), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18117] = 2,
ACTIONS(1362), 1,
anon_sym_DQUOTE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18125] = 2,
ACTIONS(559), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18133] = 2,
ACTIONS(1364), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18141] = 2,
ACTIONS(1366), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18149] = 2,
ACTIONS(1368), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18157] = 2,
ACTIONS(1370), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18165] = 2,
ACTIONS(1372), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18173] = 2,
ACTIONS(1374), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18181] = 2,
ACTIONS(1376), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18189] = 2,
ACTIONS(1378), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18197] = 2,
ACTIONS(551), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18205] = 2,
ACTIONS(1380), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18213] = 2,
ACTIONS(1382), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18221] = 2,
ACTIONS(1384), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18229] = 2,
ACTIONS(1386), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18237] = 2,
ACTIONS(1388), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18245] = 2,
ACTIONS(1390), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18253] = 2,
ACTIONS(1392), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18261] = 2,
ACTIONS(1394), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18269] = 2,
ACTIONS(1396), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18277] = 2,
ACTIONS(1398), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18285] = 2,
ACTIONS(1400), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18293] = 2,
ACTIONS(1402), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18301] = 2,
ACTIONS(1404), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18309] = 2,
ACTIONS(1406), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18317] = 2,
ACTIONS(1408), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18325] = 2,
ACTIONS(1410), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18333] = 2,
ACTIONS(541), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18341] = 2,
ACTIONS(1412), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18349] = 2,
ACTIONS(1414), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18357] = 2,
ACTIONS(1416), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18365] = 2,
ACTIONS(1418), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18373] = 2,
ACTIONS(1420), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18381] = 2,
ACTIONS(1422), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18389] = 2,
ACTIONS(677), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18397] = 2,
ACTIONS(1424), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18405] = 2,
ACTIONS(681), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18413] = 2,
ACTIONS(1426), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18421] = 2,
ACTIONS(1428), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18429] = 2,
ACTIONS(1430), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18437] = 2,
ACTIONS(693), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18445] = 2,
ACTIONS(1432), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18453] = 2,
ACTIONS(1434), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18461] = 2,
ACTIONS(1436), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18469] = 2,
ACTIONS(1438), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18477] = 2,
ACTIONS(1440), 1,
anon_sym_LBRACE,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18485] = 2,
ACTIONS(1442), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18493] = 2,
ACTIONS(1444), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18501] = 2,
ACTIONS(1446), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18509] = 2,
ACTIONS(1448), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18517] = 2,
ACTIONS(1450), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18525] = 2,
ACTIONS(1452), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18533] = 2,
ACTIONS(1454), 1,
ts_builtin_sym_end,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18541] = 2,
ACTIONS(1456), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18549] = 2,
ACTIONS(1458), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18557] = 2,
ACTIONS(1460), 1,
aux_sym_else_command_token1,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18565] = 2,
ACTIONS(1462), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
[18573] = 2,
ACTIONS(1464), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_bracket_comment,
sym_line_comment,
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)] = 66,
[SMALL_STATE(4)] = 132,
[SMALL_STATE(5)] = 198,
[SMALL_STATE(6)] = 264,
[SMALL_STATE(7)] = 330,
[SMALL_STATE(8)] = 396,
[SMALL_STATE(9)] = 462,
[SMALL_STATE(10)] = 528,
[SMALL_STATE(11)] = 594,
[SMALL_STATE(12)] = 660,
[SMALL_STATE(13)] = 726,
[SMALL_STATE(14)] = 792,
[SMALL_STATE(15)] = 855,
[SMALL_STATE(16)] = 913,
[SMALL_STATE(17)] = 971,
[SMALL_STATE(18)] = 1029,
[SMALL_STATE(19)] = 1087,
[SMALL_STATE(20)] = 1145,
[SMALL_STATE(21)] = 1203,
[SMALL_STATE(22)] = 1261,
[SMALL_STATE(23)] = 1319,
[SMALL_STATE(24)] = 1377,
[SMALL_STATE(25)] = 1435,
[SMALL_STATE(26)] = 1493,
[SMALL_STATE(27)] = 1551,
[SMALL_STATE(28)] = 1609,
[SMALL_STATE(29)] = 1667,
[SMALL_STATE(30)] = 1725,
[SMALL_STATE(31)] = 1783,
[SMALL_STATE(32)] = 1841,
[SMALL_STATE(33)] = 1899,
[SMALL_STATE(34)] = 1957,
[SMALL_STATE(35)] = 2015,
[SMALL_STATE(36)] = 2073,
[SMALL_STATE(37)] = 2131,
[SMALL_STATE(38)] = 2189,
[SMALL_STATE(39)] = 2247,
[SMALL_STATE(40)] = 2305,
[SMALL_STATE(41)] = 2363,
[SMALL_STATE(42)] = 2421,
[SMALL_STATE(43)] = 2479,
[SMALL_STATE(44)] = 2537,
[SMALL_STATE(45)] = 2595,
[SMALL_STATE(46)] = 2653,
[SMALL_STATE(47)] = 2711,
[SMALL_STATE(48)] = 2769,
[SMALL_STATE(49)] = 2827,
[SMALL_STATE(50)] = 2885,
[SMALL_STATE(51)] = 2943,
[SMALL_STATE(52)] = 3001,
[SMALL_STATE(53)] = 3059,
[SMALL_STATE(54)] = 3117,
[SMALL_STATE(55)] = 3175,
[SMALL_STATE(56)] = 3233,
[SMALL_STATE(57)] = 3291,
[SMALL_STATE(58)] = 3349,
[SMALL_STATE(59)] = 3407,
[SMALL_STATE(60)] = 3465,
[SMALL_STATE(61)] = 3523,
[SMALL_STATE(62)] = 3581,
[SMALL_STATE(63)] = 3639,
[SMALL_STATE(64)] = 3697,
[SMALL_STATE(65)] = 3755,
[SMALL_STATE(66)] = 3813,
[SMALL_STATE(67)] = 3871,
[SMALL_STATE(68)] = 3929,
[SMALL_STATE(69)] = 3987,
[SMALL_STATE(70)] = 4045,
[SMALL_STATE(71)] = 4103,
[SMALL_STATE(72)] = 4161,
[SMALL_STATE(73)] = 4219,
[SMALL_STATE(74)] = 4277,
[SMALL_STATE(75)] = 4335,
[SMALL_STATE(76)] = 4393,
[SMALL_STATE(77)] = 4451,
[SMALL_STATE(78)] = 4509,
[SMALL_STATE(79)] = 4567,
[SMALL_STATE(80)] = 4625,
[SMALL_STATE(81)] = 4683,
[SMALL_STATE(82)] = 4741,
[SMALL_STATE(83)] = 4799,
[SMALL_STATE(84)] = 4857,
[SMALL_STATE(85)] = 4915,
[SMALL_STATE(86)] = 4973,
[SMALL_STATE(87)] = 5031,
[SMALL_STATE(88)] = 5089,
[SMALL_STATE(89)] = 5147,
[SMALL_STATE(90)] = 5205,
[SMALL_STATE(91)] = 5263,
[SMALL_STATE(92)] = 5321,
[SMALL_STATE(93)] = 5379,
[SMALL_STATE(94)] = 5437,
[SMALL_STATE(95)] = 5495,
[SMALL_STATE(96)] = 5553,
[SMALL_STATE(97)] = 5611,
[SMALL_STATE(98)] = 5669,
[SMALL_STATE(99)] = 5727,
[SMALL_STATE(100)] = 5785,
[SMALL_STATE(101)] = 5843,
[SMALL_STATE(102)] = 5901,
[SMALL_STATE(103)] = 5959,
[SMALL_STATE(104)] = 6017,
[SMALL_STATE(105)] = 6075,
[SMALL_STATE(106)] = 6133,
[SMALL_STATE(107)] = 6191,
[SMALL_STATE(108)] = 6249,
[SMALL_STATE(109)] = 6307,
[SMALL_STATE(110)] = 6365,
[SMALL_STATE(111)] = 6423,
[SMALL_STATE(112)] = 6481,
[SMALL_STATE(113)] = 6539,
[SMALL_STATE(114)] = 6597,
[SMALL_STATE(115)] = 6655,
[SMALL_STATE(116)] = 6713,
[SMALL_STATE(117)] = 6771,
[SMALL_STATE(118)] = 6829,
[SMALL_STATE(119)] = 6887,
[SMALL_STATE(120)] = 6945,
[SMALL_STATE(121)] = 7003,
[SMALL_STATE(122)] = 7061,
[SMALL_STATE(123)] = 7119,
[SMALL_STATE(124)] = 7177,
[SMALL_STATE(125)] = 7235,
[SMALL_STATE(126)] = 7293,
[SMALL_STATE(127)] = 7351,
[SMALL_STATE(128)] = 7409,
[SMALL_STATE(129)] = 7467,
[SMALL_STATE(130)] = 7525,
[SMALL_STATE(131)] = 7583,
[SMALL_STATE(132)] = 7641,
[SMALL_STATE(133)] = 7699,
[SMALL_STATE(134)] = 7757,
[SMALL_STATE(135)] = 7815,
[SMALL_STATE(136)] = 7873,
[SMALL_STATE(137)] = 7931,
[SMALL_STATE(138)] = 7989,
[SMALL_STATE(139)] = 8047,
[SMALL_STATE(140)] = 8105,
[SMALL_STATE(141)] = 8163,
[SMALL_STATE(142)] = 8221,
[SMALL_STATE(143)] = 8279,
[SMALL_STATE(144)] = 8337,
[SMALL_STATE(145)] = 8395,
[SMALL_STATE(146)] = 8453,
[SMALL_STATE(147)] = 8511,
[SMALL_STATE(148)] = 8569,
[SMALL_STATE(149)] = 8627,
[SMALL_STATE(150)] = 8685,
[SMALL_STATE(151)] = 8743,
[SMALL_STATE(152)] = 8801,
[SMALL_STATE(153)] = 8859,
[SMALL_STATE(154)] = 8917,
[SMALL_STATE(155)] = 8975,
[SMALL_STATE(156)] = 9033,
[SMALL_STATE(157)] = 9091,
[SMALL_STATE(158)] = 9149,
[SMALL_STATE(159)] = 9207,
[SMALL_STATE(160)] = 9265,
[SMALL_STATE(161)] = 9318,
[SMALL_STATE(162)] = 9373,
[SMALL_STATE(163)] = 9428,
[SMALL_STATE(164)] = 9481,
[SMALL_STATE(165)] = 9536,
[SMALL_STATE(166)] = 9589,
[SMALL_STATE(167)] = 9642,
[SMALL_STATE(168)] = 9695,
[SMALL_STATE(169)] = 9750,
[SMALL_STATE(170)] = 9803,
[SMALL_STATE(171)] = 9856,
[SMALL_STATE(172)] = 9909,
[SMALL_STATE(173)] = 9962,
[SMALL_STATE(174)] = 10015,
[SMALL_STATE(175)] = 10068,
[SMALL_STATE(176)] = 10123,
[SMALL_STATE(177)] = 10176,
[SMALL_STATE(178)] = 10231,
[SMALL_STATE(179)] = 10281,
[SMALL_STATE(180)] = 10331,
[SMALL_STATE(181)] = 10381,
[SMALL_STATE(182)] = 10431,
[SMALL_STATE(183)] = 10481,
[SMALL_STATE(184)] = 10531,
[SMALL_STATE(185)] = 10581,
[SMALL_STATE(186)] = 10631,
[SMALL_STATE(187)] = 10681,
[SMALL_STATE(188)] = 10731,
[SMALL_STATE(189)] = 10781,
[SMALL_STATE(190)] = 10831,
[SMALL_STATE(191)] = 10881,
[SMALL_STATE(192)] = 10931,
[SMALL_STATE(193)] = 10981,
[SMALL_STATE(194)] = 11031,
[SMALL_STATE(195)] = 11081,
[SMALL_STATE(196)] = 11131,
[SMALL_STATE(197)] = 11181,
[SMALL_STATE(198)] = 11231,
[SMALL_STATE(199)] = 11281,
[SMALL_STATE(200)] = 11331,
[SMALL_STATE(201)] = 11381,
[SMALL_STATE(202)] = 11431,
[SMALL_STATE(203)] = 11481,
[SMALL_STATE(204)] = 11531,
[SMALL_STATE(205)] = 11574,
[SMALL_STATE(206)] = 11617,
[SMALL_STATE(207)] = 11660,
[SMALL_STATE(208)] = 11703,
[SMALL_STATE(209)] = 11746,
[SMALL_STATE(210)] = 11786,
[SMALL_STATE(211)] = 11826,
[SMALL_STATE(212)] = 11866,
[SMALL_STATE(213)] = 11906,
[SMALL_STATE(214)] = 11946,
[SMALL_STATE(215)] = 11986,
[SMALL_STATE(216)] = 12008,
[SMALL_STATE(217)] = 12030,
[SMALL_STATE(218)] = 12052,
[SMALL_STATE(219)] = 12074,
[SMALL_STATE(220)] = 12096,
[SMALL_STATE(221)] = 12118,
[SMALL_STATE(222)] = 12140,
[SMALL_STATE(223)] = 12162,
[SMALL_STATE(224)] = 12181,
[SMALL_STATE(225)] = 12200,
[SMALL_STATE(226)] = 12219,
[SMALL_STATE(227)] = 12238,
[SMALL_STATE(228)] = 12257,
[SMALL_STATE(229)] = 12276,
[SMALL_STATE(230)] = 12301,
[SMALL_STATE(231)] = 12320,
[SMALL_STATE(232)] = 12339,
[SMALL_STATE(233)] = 12358,
[SMALL_STATE(234)] = 12377,
[SMALL_STATE(235)] = 12396,
[SMALL_STATE(236)] = 12415,
[SMALL_STATE(237)] = 12434,
[SMALL_STATE(238)] = 12459,
[SMALL_STATE(239)] = 12484,
[SMALL_STATE(240)] = 12509,
[SMALL_STATE(241)] = 12528,
[SMALL_STATE(242)] = 12547,
[SMALL_STATE(243)] = 12566,
[SMALL_STATE(244)] = 12585,
[SMALL_STATE(245)] = 12604,
[SMALL_STATE(246)] = 12623,
[SMALL_STATE(247)] = 12642,
[SMALL_STATE(248)] = 12661,
[SMALL_STATE(249)] = 12686,
[SMALL_STATE(250)] = 12705,
[SMALL_STATE(251)] = 12724,
[SMALL_STATE(252)] = 12743,
[SMALL_STATE(253)] = 12762,
[SMALL_STATE(254)] = 12781,
[SMALL_STATE(255)] = 12800,
[SMALL_STATE(256)] = 12819,
[SMALL_STATE(257)] = 12838,
[SMALL_STATE(258)] = 12857,
[SMALL_STATE(259)] = 12876,
[SMALL_STATE(260)] = 12901,
[SMALL_STATE(261)] = 12926,
[SMALL_STATE(262)] = 12951,
[SMALL_STATE(263)] = 12976,
[SMALL_STATE(264)] = 12995,
[SMALL_STATE(265)] = 13020,
[SMALL_STATE(266)] = 13045,
[SMALL_STATE(267)] = 13064,
[SMALL_STATE(268)] = 13083,
[SMALL_STATE(269)] = 13108,
[SMALL_STATE(270)] = 13127,
[SMALL_STATE(271)] = 13152,
[SMALL_STATE(272)] = 13171,
[SMALL_STATE(273)] = 13190,
[SMALL_STATE(274)] = 13209,
[SMALL_STATE(275)] = 13228,
[SMALL_STATE(276)] = 13247,
[SMALL_STATE(277)] = 13266,
[SMALL_STATE(278)] = 13291,
[SMALL_STATE(279)] = 13310,
[SMALL_STATE(280)] = 13329,
[SMALL_STATE(281)] = 13348,
[SMALL_STATE(282)] = 13367,
[SMALL_STATE(283)] = 13386,
[SMALL_STATE(284)] = 13405,
[SMALL_STATE(285)] = 13424,
[SMALL_STATE(286)] = 13443,
[SMALL_STATE(287)] = 13462,
[SMALL_STATE(288)] = 13481,
[SMALL_STATE(289)] = 13500,
[SMALL_STATE(290)] = 13519,
[SMALL_STATE(291)] = 13538,
[SMALL_STATE(292)] = 13557,
[SMALL_STATE(293)] = 13574,
[SMALL_STATE(294)] = 13591,
[SMALL_STATE(295)] = 13608,
[SMALL_STATE(296)] = 13625,
[SMALL_STATE(297)] = 13642,
[SMALL_STATE(298)] = 13659,
[SMALL_STATE(299)] = 13676,
[SMALL_STATE(300)] = 13693,
[SMALL_STATE(301)] = 13710,
[SMALL_STATE(302)] = 13727,
[SMALL_STATE(303)] = 13744,
[SMALL_STATE(304)] = 13761,
[SMALL_STATE(305)] = 13778,
[SMALL_STATE(306)] = 13795,
[SMALL_STATE(307)] = 13812,
[SMALL_STATE(308)] = 13829,
[SMALL_STATE(309)] = 13846,
[SMALL_STATE(310)] = 13863,
[SMALL_STATE(311)] = 13880,
[SMALL_STATE(312)] = 13897,
[SMALL_STATE(313)] = 13914,
[SMALL_STATE(314)] = 13931,
[SMALL_STATE(315)] = 13948,
[SMALL_STATE(316)] = 13965,
[SMALL_STATE(317)] = 13982,
[SMALL_STATE(318)] = 13999,
[SMALL_STATE(319)] = 14016,
[SMALL_STATE(320)] = 14033,
[SMALL_STATE(321)] = 14050,
[SMALL_STATE(322)] = 14067,
[SMALL_STATE(323)] = 14084,
[SMALL_STATE(324)] = 14101,
[SMALL_STATE(325)] = 14118,
[SMALL_STATE(326)] = 14135,
[SMALL_STATE(327)] = 14152,
[SMALL_STATE(328)] = 14169,
[SMALL_STATE(329)] = 14186,
[SMALL_STATE(330)] = 14203,
[SMALL_STATE(331)] = 14220,
[SMALL_STATE(332)] = 14237,
[SMALL_STATE(333)] = 14254,
[SMALL_STATE(334)] = 14271,
[SMALL_STATE(335)] = 14288,
[SMALL_STATE(336)] = 14305,
[SMALL_STATE(337)] = 14322,
[SMALL_STATE(338)] = 14339,
[SMALL_STATE(339)] = 14356,
[SMALL_STATE(340)] = 14373,
[SMALL_STATE(341)] = 14390,
[SMALL_STATE(342)] = 14407,
[SMALL_STATE(343)] = 14424,
[SMALL_STATE(344)] = 14441,
[SMALL_STATE(345)] = 14458,
[SMALL_STATE(346)] = 14475,
[SMALL_STATE(347)] = 14492,
[SMALL_STATE(348)] = 14509,
[SMALL_STATE(349)] = 14526,
[SMALL_STATE(350)] = 14543,
[SMALL_STATE(351)] = 14560,
[SMALL_STATE(352)] = 14577,
[SMALL_STATE(353)] = 14594,
[SMALL_STATE(354)] = 14611,
[SMALL_STATE(355)] = 14628,
[SMALL_STATE(356)] = 14645,
[SMALL_STATE(357)] = 14662,
[SMALL_STATE(358)] = 14679,
[SMALL_STATE(359)] = 14696,
[SMALL_STATE(360)] = 14713,
[SMALL_STATE(361)] = 14730,
[SMALL_STATE(362)] = 14747,
[SMALL_STATE(363)] = 14764,
[SMALL_STATE(364)] = 14781,
[SMALL_STATE(365)] = 14798,
[SMALL_STATE(366)] = 14815,
[SMALL_STATE(367)] = 14832,
[SMALL_STATE(368)] = 14849,
[SMALL_STATE(369)] = 14866,
[SMALL_STATE(370)] = 14883,
[SMALL_STATE(371)] = 14900,
[SMALL_STATE(372)] = 14917,
[SMALL_STATE(373)] = 14934,
[SMALL_STATE(374)] = 14951,
[SMALL_STATE(375)] = 14968,
[SMALL_STATE(376)] = 14985,
[SMALL_STATE(377)] = 15002,
[SMALL_STATE(378)] = 15019,
[SMALL_STATE(379)] = 15036,
[SMALL_STATE(380)] = 15053,
[SMALL_STATE(381)] = 15070,
[SMALL_STATE(382)] = 15087,
[SMALL_STATE(383)] = 15104,
[SMALL_STATE(384)] = 15121,
[SMALL_STATE(385)] = 15138,
[SMALL_STATE(386)] = 15155,
[SMALL_STATE(387)] = 15172,
[SMALL_STATE(388)] = 15189,
[SMALL_STATE(389)] = 15206,
[SMALL_STATE(390)] = 15223,
[SMALL_STATE(391)] = 15240,
[SMALL_STATE(392)] = 15257,
[SMALL_STATE(393)] = 15274,
[SMALL_STATE(394)] = 15291,
[SMALL_STATE(395)] = 15308,
[SMALL_STATE(396)] = 15325,
[SMALL_STATE(397)] = 15342,
[SMALL_STATE(398)] = 15359,
[SMALL_STATE(399)] = 15376,
[SMALL_STATE(400)] = 15393,
[SMALL_STATE(401)] = 15410,
[SMALL_STATE(402)] = 15427,
[SMALL_STATE(403)] = 15444,
[SMALL_STATE(404)] = 15461,
[SMALL_STATE(405)] = 15478,
[SMALL_STATE(406)] = 15495,
[SMALL_STATE(407)] = 15512,
[SMALL_STATE(408)] = 15529,
[SMALL_STATE(409)] = 15546,
[SMALL_STATE(410)] = 15563,
[SMALL_STATE(411)] = 15580,
[SMALL_STATE(412)] = 15597,
[SMALL_STATE(413)] = 15614,
[SMALL_STATE(414)] = 15631,
[SMALL_STATE(415)] = 15648,
[SMALL_STATE(416)] = 15665,
[SMALL_STATE(417)] = 15682,
[SMALL_STATE(418)] = 15699,
[SMALL_STATE(419)] = 15716,
[SMALL_STATE(420)] = 15733,
[SMALL_STATE(421)] = 15750,
[SMALL_STATE(422)] = 15767,
[SMALL_STATE(423)] = 15784,
[SMALL_STATE(424)] = 15801,
[SMALL_STATE(425)] = 15818,
[SMALL_STATE(426)] = 15835,
[SMALL_STATE(427)] = 15852,
[SMALL_STATE(428)] = 15869,
[SMALL_STATE(429)] = 15886,
[SMALL_STATE(430)] = 15903,
[SMALL_STATE(431)] = 15920,
[SMALL_STATE(432)] = 15937,
[SMALL_STATE(433)] = 15954,
[SMALL_STATE(434)] = 15971,
[SMALL_STATE(435)] = 15988,
[SMALL_STATE(436)] = 16005,
[SMALL_STATE(437)] = 16022,
[SMALL_STATE(438)] = 16039,
[SMALL_STATE(439)] = 16056,
[SMALL_STATE(440)] = 16073,
[SMALL_STATE(441)] = 16090,
[SMALL_STATE(442)] = 16107,
[SMALL_STATE(443)] = 16124,
[SMALL_STATE(444)] = 16141,
[SMALL_STATE(445)] = 16158,
[SMALL_STATE(446)] = 16175,
[SMALL_STATE(447)] = 16192,
[SMALL_STATE(448)] = 16209,
[SMALL_STATE(449)] = 16226,
[SMALL_STATE(450)] = 16243,
[SMALL_STATE(451)] = 16260,
[SMALL_STATE(452)] = 16277,
[SMALL_STATE(453)] = 16294,
[SMALL_STATE(454)] = 16311,
[SMALL_STATE(455)] = 16325,
[SMALL_STATE(456)] = 16339,
[SMALL_STATE(457)] = 16353,
[SMALL_STATE(458)] = 16367,
[SMALL_STATE(459)] = 16381,
[SMALL_STATE(460)] = 16395,
[SMALL_STATE(461)] = 16409,
[SMALL_STATE(462)] = 16423,
[SMALL_STATE(463)] = 16437,
[SMALL_STATE(464)] = 16451,
[SMALL_STATE(465)] = 16465,
[SMALL_STATE(466)] = 16479,
[SMALL_STATE(467)] = 16493,
[SMALL_STATE(468)] = 16507,
[SMALL_STATE(469)] = 16521,
[SMALL_STATE(470)] = 16535,
[SMALL_STATE(471)] = 16549,
[SMALL_STATE(472)] = 16563,
[SMALL_STATE(473)] = 16577,
[SMALL_STATE(474)] = 16591,
[SMALL_STATE(475)] = 16605,
[SMALL_STATE(476)] = 16619,
[SMALL_STATE(477)] = 16633,
[SMALL_STATE(478)] = 16647,
[SMALL_STATE(479)] = 16661,
[SMALL_STATE(480)] = 16675,
[SMALL_STATE(481)] = 16689,
[SMALL_STATE(482)] = 16703,
[SMALL_STATE(483)] = 16717,
[SMALL_STATE(484)] = 16731,
[SMALL_STATE(485)] = 16745,
[SMALL_STATE(486)] = 16759,
[SMALL_STATE(487)] = 16773,
[SMALL_STATE(488)] = 16787,
[SMALL_STATE(489)] = 16801,
[SMALL_STATE(490)] = 16815,
[SMALL_STATE(491)] = 16829,
[SMALL_STATE(492)] = 16843,
[SMALL_STATE(493)] = 16857,
[SMALL_STATE(494)] = 16871,
[SMALL_STATE(495)] = 16885,
[SMALL_STATE(496)] = 16899,
[SMALL_STATE(497)] = 16913,
[SMALL_STATE(498)] = 16927,
[SMALL_STATE(499)] = 16941,
[SMALL_STATE(500)] = 16955,
[SMALL_STATE(501)] = 16969,
[SMALL_STATE(502)] = 16983,
[SMALL_STATE(503)] = 16997,
[SMALL_STATE(504)] = 17011,
[SMALL_STATE(505)] = 17025,
[SMALL_STATE(506)] = 17039,
[SMALL_STATE(507)] = 17053,
[SMALL_STATE(508)] = 17067,
[SMALL_STATE(509)] = 17081,
[SMALL_STATE(510)] = 17095,
[SMALL_STATE(511)] = 17109,
[SMALL_STATE(512)] = 17123,
[SMALL_STATE(513)] = 17137,
[SMALL_STATE(514)] = 17151,
[SMALL_STATE(515)] = 17165,
[SMALL_STATE(516)] = 17179,
[SMALL_STATE(517)] = 17193,
[SMALL_STATE(518)] = 17207,
[SMALL_STATE(519)] = 17221,
[SMALL_STATE(520)] = 17235,
[SMALL_STATE(521)] = 17249,
[SMALL_STATE(522)] = 17263,
[SMALL_STATE(523)] = 17277,
[SMALL_STATE(524)] = 17291,
[SMALL_STATE(525)] = 17305,
[SMALL_STATE(526)] = 17319,
[SMALL_STATE(527)] = 17333,
[SMALL_STATE(528)] = 17347,
[SMALL_STATE(529)] = 17361,
[SMALL_STATE(530)] = 17375,
[SMALL_STATE(531)] = 17389,
[SMALL_STATE(532)] = 17403,
[SMALL_STATE(533)] = 17417,
[SMALL_STATE(534)] = 17431,
[SMALL_STATE(535)] = 17445,
[SMALL_STATE(536)] = 17459,
[SMALL_STATE(537)] = 17473,
[SMALL_STATE(538)] = 17487,
[SMALL_STATE(539)] = 17501,
[SMALL_STATE(540)] = 17515,
[SMALL_STATE(541)] = 17529,
[SMALL_STATE(542)] = 17543,
[SMALL_STATE(543)] = 17554,
[SMALL_STATE(544)] = 17565,
[SMALL_STATE(545)] = 17576,
[SMALL_STATE(546)] = 17587,
[SMALL_STATE(547)] = 17598,
[SMALL_STATE(548)] = 17609,
[SMALL_STATE(549)] = 17620,
[SMALL_STATE(550)] = 17631,
[SMALL_STATE(551)] = 17642,
[SMALL_STATE(552)] = 17653,
[SMALL_STATE(553)] = 17664,
[SMALL_STATE(554)] = 17675,
[SMALL_STATE(555)] = 17686,
[SMALL_STATE(556)] = 17697,
[SMALL_STATE(557)] = 17708,
[SMALL_STATE(558)] = 17719,
[SMALL_STATE(559)] = 17730,
[SMALL_STATE(560)] = 17741,
[SMALL_STATE(561)] = 17752,
[SMALL_STATE(562)] = 17763,
[SMALL_STATE(563)] = 17774,
[SMALL_STATE(564)] = 17785,
[SMALL_STATE(565)] = 17796,
[SMALL_STATE(566)] = 17807,
[SMALL_STATE(567)] = 17818,
[SMALL_STATE(568)] = 17829,
[SMALL_STATE(569)] = 17837,
[SMALL_STATE(570)] = 17845,
[SMALL_STATE(571)] = 17853,
[SMALL_STATE(572)] = 17861,
[SMALL_STATE(573)] = 17869,
[SMALL_STATE(574)] = 17877,
[SMALL_STATE(575)] = 17885,
[SMALL_STATE(576)] = 17893,
[SMALL_STATE(577)] = 17901,
[SMALL_STATE(578)] = 17909,
[SMALL_STATE(579)] = 17917,
[SMALL_STATE(580)] = 17925,
[SMALL_STATE(581)] = 17933,
[SMALL_STATE(582)] = 17941,
[SMALL_STATE(583)] = 17949,
[SMALL_STATE(584)] = 17957,
[SMALL_STATE(585)] = 17965,
[SMALL_STATE(586)] = 17973,
[SMALL_STATE(587)] = 17981,
[SMALL_STATE(588)] = 17989,
[SMALL_STATE(589)] = 17997,
[SMALL_STATE(590)] = 18005,
[SMALL_STATE(591)] = 18013,
[SMALL_STATE(592)] = 18021,
[SMALL_STATE(593)] = 18029,
[SMALL_STATE(594)] = 18037,
[SMALL_STATE(595)] = 18045,
[SMALL_STATE(596)] = 18053,
[SMALL_STATE(597)] = 18061,
[SMALL_STATE(598)] = 18069,
[SMALL_STATE(599)] = 18077,
[SMALL_STATE(600)] = 18085,
[SMALL_STATE(601)] = 18093,
[SMALL_STATE(602)] = 18101,
[SMALL_STATE(603)] = 18109,
[SMALL_STATE(604)] = 18117,
[SMALL_STATE(605)] = 18125,
[SMALL_STATE(606)] = 18133,
[SMALL_STATE(607)] = 18141,
[SMALL_STATE(608)] = 18149,
[SMALL_STATE(609)] = 18157,
[SMALL_STATE(610)] = 18165,
[SMALL_STATE(611)] = 18173,
[SMALL_STATE(612)] = 18181,
[SMALL_STATE(613)] = 18189,
[SMALL_STATE(614)] = 18197,
[SMALL_STATE(615)] = 18205,
[SMALL_STATE(616)] = 18213,
[SMALL_STATE(617)] = 18221,
[SMALL_STATE(618)] = 18229,
[SMALL_STATE(619)] = 18237,
[SMALL_STATE(620)] = 18245,
[SMALL_STATE(621)] = 18253,
[SMALL_STATE(622)] = 18261,
[SMALL_STATE(623)] = 18269,
[SMALL_STATE(624)] = 18277,
[SMALL_STATE(625)] = 18285,
[SMALL_STATE(626)] = 18293,
[SMALL_STATE(627)] = 18301,
[SMALL_STATE(628)] = 18309,
[SMALL_STATE(629)] = 18317,
[SMALL_STATE(630)] = 18325,
[SMALL_STATE(631)] = 18333,
[SMALL_STATE(632)] = 18341,
[SMALL_STATE(633)] = 18349,
[SMALL_STATE(634)] = 18357,
[SMALL_STATE(635)] = 18365,
[SMALL_STATE(636)] = 18373,
[SMALL_STATE(637)] = 18381,
[SMALL_STATE(638)] = 18389,
[SMALL_STATE(639)] = 18397,
[SMALL_STATE(640)] = 18405,
[SMALL_STATE(641)] = 18413,
[SMALL_STATE(642)] = 18421,
[SMALL_STATE(643)] = 18429,
[SMALL_STATE(644)] = 18437,
[SMALL_STATE(645)] = 18445,
[SMALL_STATE(646)] = 18453,
[SMALL_STATE(647)] = 18461,
[SMALL_STATE(648)] = 18469,
[SMALL_STATE(649)] = 18477,
[SMALL_STATE(650)] = 18485,
[SMALL_STATE(651)] = 18493,
[SMALL_STATE(652)] = 18501,
[SMALL_STATE(653)] = 18509,
[SMALL_STATE(654)] = 18517,
[SMALL_STATE(655)] = 18525,
[SMALL_STATE(656)] = 18533,
[SMALL_STATE(657)] = 18541,
[SMALL_STATE(658)] = 18549,
[SMALL_STATE(659)] = 18557,
[SMALL_STATE(660)] = 18565,
[SMALL_STATE(661)] = 18573,
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}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537),
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506),
[43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(14),
[56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(534),
[59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(468),
[62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(469),
[65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2),
[67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(457),
[70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(458),
[73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(459),
[76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(460),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(540),
[82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611),
[88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627),
[90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
[96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430),
[104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
[164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
[190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
[194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
[198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
[208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
[212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
[220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432),
[230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
[234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447),
[248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443),
[272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441),
[282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
[290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444),
[298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(222),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(248),
[324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(611),
[327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(627),
[330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(101),
[333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(206),
[336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(205),
[339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2),
[341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(215),
[344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439),
[348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
[354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456),
[368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523),
[374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491),
[380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490),
[388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484),
[390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521),
[392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517),
[398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472),
[408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471),
[410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533),
[424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
[434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501),
[436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539),
[446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502),
[458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503),
[460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642),
[482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
[492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161),
[495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(534),
[498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457),
[501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(458),
[504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2),
[506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(459),
[509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(460),
[512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(509),
[515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(162),
[518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526),
[521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
[531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
[535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168),
[538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(461),
[541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
[543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
[545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
[553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175),
[556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484),
[559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(177),
[564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(495),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
[579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638),
[581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(222),
[584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(248),
[587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(611),
[590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(627),
[593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(204),
[598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1),
[600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644),
[618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(272),
[621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(262),
[624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(642),
[627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(643),
[630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(209),
[633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(234),
[636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(259),
[639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(636),
[642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(637),
[645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2),
[647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(210),
[650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
[652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1),
[654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
[656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214),
[658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1),
[660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(224),
[663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(268),
[666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(648),
[669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(649),
[672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(214),
[675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1),
[679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1),
[681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3),
[683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3),
[685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1),
[687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1),
[689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3),
[691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3),
[693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2),
[695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2),
[697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4),
[699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4),
[701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4),
[703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4),
[705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1),
[707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1),
[709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5),
[711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5),
[713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6),
[715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6),
[717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 7),
[719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 7),
[721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7),
[723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7),
[725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4),
[727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4),
[729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(454),
[732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(229),
[735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2),
[737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4),
[739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4),
[741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5),
[743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5),
[745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3),
[747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3),
[749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3),
[751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3),
[753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4),
[755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454),
[759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1),
[765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 6),
[767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 6),
[769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 7),
[771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 7),
[773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2),
[775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2),
[777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2),
[779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2),
[781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2),
[783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2),
[785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2),
[787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2),
[789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3),
[791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3),
[793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3),
[795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3),
[797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3),
[799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3),
[801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 6),
[803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 6),
[805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3),
[807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3),
[809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3),
[811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3),
[813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3),
[815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3),
[817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3),
[819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3),
[821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4),
[823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4),
[825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3),
[827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3),
[829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3),
[831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3),
[833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3),
[835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3),
[837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5),
[839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5),
[841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3),
[843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3),
[845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3),
[847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3),
[849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5),
[851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5),
[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_endforeach_command, 4),
[859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4),
[861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4),
[863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4),
[865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4),
[867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4),
[869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4),
[871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4),
[873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5),
[875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5),
[877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5),
[879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5),
[881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2),
[883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2),
[885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4),
[887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4),
[889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3),
[891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3),
[893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3),
[895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3),
[897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3),
[899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3),
[901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3),
[903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3),
[905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4),
[907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4),
[909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4),
[911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4),
[913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4),
[915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4),
[917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5),
[919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5),
[921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5),
[923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5),
[925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5),
[927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5),
[929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5),
[931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5),
[933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529),
[935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
[937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486),
[939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
[943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
[947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
[951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
[955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467),
[959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530),
[963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522),
[977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520),
[981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561),
[983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518),
[985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562),
[987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516),
[989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513),
[993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566),
[995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
[1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543),
[1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473),
[1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
[1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
[1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
[1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476),
[1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
[1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546),
[1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483),
[1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563),
[1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542),
[1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485),
[1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487),
[1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
[1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488),
[1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489),
[1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
[1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494),
[1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
[1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549),
[1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496),
[1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497),
[1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498),
[1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548),
[1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499),
[1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500),
[1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547),
[1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
[1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
[1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551),
[1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567),
[1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
[1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
[1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511),
[1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
[1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512),
[1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554),
[1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514),
[1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515),
[1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
[1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525),
[1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
[1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(530),
[1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2),
[1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
[1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
[1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
[1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528),
[1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531),
[1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532),
[1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
[1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504),
[1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538),
[1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507),
[1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
[1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188),
[1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179),
[1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
[1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200),
[1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
[1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201),
[1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
[1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449),
[1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
[1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407),
[1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
[1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186),
[1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180),
[1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
[1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
[1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
[1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
[1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184),
[1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
[1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
[1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
[1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438),
[1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189),
[1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
[1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
[1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613),
[1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612),
[1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599),
[1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615),
[1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
[1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412),
[1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578),
[1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
[1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657),
[1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655),
[1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
[1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
[1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640),
[1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576),
[1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622),
[1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
[1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569),
[1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
[1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
[1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589),
[1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583),
[1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582),
[1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581),
[1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646),
[1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645),
[1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639),
[1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630),
[1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
[1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360),
[1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
[1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660),
[1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
[1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606),
[1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[1454] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
[1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
[1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
[1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
[1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
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