diff --git a/grammar.js b/grammar.js index 4177239..1b1024e 100644 --- a/grammar.js +++ b/grammar.js @@ -29,9 +29,9 @@ module.exports = grammar({ variable: ($) => prec.left(repeat1(choice(/[a-zA-Z0-9/_.+-]/, $.escape_sequence, $.variable_ref))), variable_ref: ($) => choice($.normal_var, $.env_var, $.cache_var), - normal_var: ($) => seq("${", $.variable, "}"), - env_var: ($) => seq("$ENV", "{", $.variable, "}"), - cache_var: ($) => seq("$CACHE", "{", $.variable, "}"), + normal_var: ($) => seq("$", "{", $.variable, "}"), + env_var: ($) => seq("$", "ENV", "{", $.variable, "}"), + cache_var: ($) => seq("$", "CACHE", "{", $.variable, "}"), argument: ($) => choice($.bracket_argument, $.quoted_argument, $.unquoted_argument), _untrimmed_argument: ($) => choice(/\s/, $.argument), diff --git a/src/grammar.json b/src/grammar.json index f5cf448..93b92bb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -96,7 +96,11 @@ "members": [ { "type": "STRING", - "value": "${" + "value": "$" + }, + { + "type": "STRING", + "value": "{" }, { "type": "SYMBOL", @@ -113,7 +117,11 @@ "members": [ { "type": "STRING", - "value": "$ENV" + "value": "$" + }, + { + "type": "STRING", + "value": "ENV" }, { "type": "STRING", @@ -134,7 +142,11 @@ "members": [ { "type": "STRING", - "value": "$CACHE" + "value": "$" + }, + { + "type": "STRING", + "value": "CACHE" }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index 88dc26a..62ab4fb 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -677,15 +677,7 @@ "named": false }, { - "type": "$CACHE", - "named": false - }, - { - "type": "$ENV", - "named": false - }, - { - "type": "${", + "type": "$", "named": false }, { @@ -696,6 +688,14 @@ "type": ")", "named": false }, + { + "type": "CACHE", + "named": false + }, + { + "type": "ENV", + "named": false + }, { "type": "\\n", "named": false diff --git a/src/parser.c b/src/parser.c index d3d41c3..0adfa9e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 674 +#define STATE_COUNT 679 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 76 #define ALIAS_COUNT 0 @@ -23,11 +23,11 @@ enum { 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, + anon_sym_DOLLAR = 7, + anon_sym_LBRACE = 8, + anon_sym_RBRACE = 9, + anon_sym_ENV = 10, + anon_sym_CACHE = 11, aux_sym__untrimmed_argument_token1 = 12, anon_sym_DQUOTE = 13, aux_sym_quoted_element_token1 = 14, @@ -102,11 +102,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASHn] = "\\n", [sym__escape_semicolon] = "_escape_semicolon", [aux_sym_variable_token1] = "variable_token1", - [anon_sym_DOLLAR_LBRACE] = "${", - [anon_sym_RBRACE] = "}", - [anon_sym_DOLLARENV] = "$ENV", + [anon_sym_DOLLAR] = "$", [anon_sym_LBRACE] = "{", - [anon_sym_DOLLARCACHE] = "$CACHE", + [anon_sym_RBRACE] = "}", + [anon_sym_ENV] = "ENV", + [anon_sym_CACHE] = "CACHE", [aux_sym__untrimmed_argument_token1] = "_untrimmed_argument_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_quoted_element_token1] = "quoted_element_token1", @@ -181,11 +181,11 @@ static const TSSymbol ts_symbol_map[] = { [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, - [anon_sym_DOLLARENV] = anon_sym_DOLLARENV, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_DOLLARCACHE] = anon_sym_DOLLARCACHE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_ENV] = anon_sym_ENV, + [anon_sym_CACHE] = anon_sym_CACHE, [aux_sym__untrimmed_argument_token1] = aux_sym__untrimmed_argument_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_quoted_element_token1] = aux_sym_quoted_element_token1, @@ -281,15 +281,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_DOLLAR_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLARENV] = { + [anon_sym_DOLLAR] = { .visible = true, .named = false, }, @@ -297,7 +289,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOLLARCACHE] = { + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_ENV] = { + .visible = true, + .named = false, + }, + [anon_sym_CACHE] = { .visible = true, .named = false, }, @@ -574,9 +574,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(18); if (lookahead == '"') ADVANCE(31); - if (lookahead == '$') ADVANCE(35); - if (lookahead == '(') ADVANCE(37); - if (lookahead == ')') ADVANCE(38); + if (lookahead == '$') ADVANCE(25); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); if (lookahead == ';') ADVANCE(23); if (lookahead == '\\') ADVANCE(11); if (lookahead == '\t' || @@ -584,12 +584,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n' || lookahead == '\r') ADVANCE(30); if (lookahead != 0 && - lookahead != '#') ADVANCE(34); + lookahead != '#') ADVANCE(33); END_STATE(); case 1: if (lookahead == '"') ADVANCE(31); - if (lookahead == '$') ADVANCE(35); - if (lookahead == ')') ADVANCE(38); + if (lookahead == '$') ADVANCE(25); + if (lookahead == ')') ADVANCE(36); if (lookahead == ';') ADVANCE(23); if (lookahead == '\\') ADVANCE(11); if (lookahead == '\t' || @@ -598,23 +598,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(30); if (lookahead != 0 && lookahead != '#' && - lookahead != '(') ADVANCE(34); + lookahead != '(') ADVANCE(33); END_STATE(); case 2: if (lookahead == '"') ADVANCE(31); - if (lookahead == '$') ADVANCE(33); + if (lookahead == '$') ADVANCE(25); if (lookahead == ';') ADVANCE(23); if (lookahead == '\\') ADVANCE(11); if (lookahead != 0) ADVANCE(32); END_STATE(); case 3: - if (lookahead == '$') ADVANCE(5); - if (lookahead == '(') ADVANCE(37); + if (lookahead == '$') ADVANCE(25); + if (lookahead == '(') ADVANCE(35); if (lookahead == ';') ADVANCE(23); if (lookahead == '\\') ADVANCE(11); - if (lookahead == '}') ADVANCE(26); + if (lookahead == '}') ADVANCE(27); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(36); + lookahead == ' ') ADVANCE(34); if (lookahead == '+' || ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -627,7 +627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 5: if (lookahead == 'C') ADVANCE(4); if (lookahead == 'E') ADVANCE(9); - if (lookahead == '{') ADVANCE(25); + if (lookahead == '{') ADVANCE(26); END_STATE(); case 6: if (lookahead == 'C') ADVANCE(8); @@ -642,7 +642,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'N') ADVANCE(10); END_STATE(); case 10: - if (lookahead == 'V') ADVANCE(27); + if (lookahead == 'V') ADVANCE(28); END_STATE(); case 11: if (lookahead == 'n') ADVANCE(22); @@ -656,118 +656,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(88); + lookahead == 'e') ADVANCE(86); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 13: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); + lookahead == 'e') ADVANCE(93); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 14: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(96); + lookahead == 'e') ADVANCE(94); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 15: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(97); + lookahead == 'e') ADVANCE(95); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 16: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(98); + lookahead == 'e') ADVANCE(96); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 17: if (eof) ADVANCE(18); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '}') ADVANCE(26); + if (lookahead == '{') ADVANCE(26); + if (lookahead == '}') ADVANCE(27); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(98); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(74); + lookahead == 'i') ADVANCE(72); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + lookahead == 'm') ADVANCE(52); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(79); + lookahead == 'w') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 18: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -791,19 +791,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_variable_token1); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 27: - ACCEPT_TOKEN(anon_sym_DOLLARENV); - END_STATE(); - case 28: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); + case 27: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 28: + ACCEPT_TOKEN(anon_sym_ENV); + END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_DOLLARCACHE); + ACCEPT_TOKEN(anon_sym_CACHE); END_STATE(); case 30: ACCEPT_TOKEN(aux_sym__untrimmed_argument_token1); @@ -815,704 +815,692 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_quoted_element_token1); END_STATE(); case 33: - ACCEPT_TOKEN(aux_sym_quoted_element_token1); - if (lookahead == 'C') ADVANCE(4); - if (lookahead == 'E') ADVANCE(9); - if (lookahead == '{') ADVANCE(25); + ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); END_STATE(); case 34: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - END_STATE(); - case 35: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'C') ADVANCE(4); - if (lookahead == 'E') ADVANCE(9); - if (lookahead == '{') ADVANCE(25); - END_STATE(); - case 36: ACCEPT_TOKEN(aux_sym_if_command_token1); END_STATE(); - case 37: + case 35: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 38: + case 36: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 39: + case 37: ACCEPT_TOKEN(aux_sym_else_command_token1); - if (lookahead == '$') ADVANCE(35); + if (lookahead == '$') ADVANCE(25); if (lookahead == ';') ADVANCE(23); if (lookahead == '\\') ADVANCE(11); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(41); + lookahead == ' ') ADVANCE(39); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != ')') ADVANCE(34); + lookahead != ')') ADVANCE(33); + END_STATE(); + case 38: + ACCEPT_TOKEN(aux_sym_else_command_token1); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(39); + END_STATE(); + case 39: + ACCEPT_TOKEN(aux_sym_else_command_token1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(39); END_STATE(); case 40: - ACCEPT_TOKEN(aux_sym_else_command_token1); - if (lookahead == ')') ADVANCE(38); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - END_STATE(); - case 41: - ACCEPT_TOKEN(aux_sym_else_command_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - END_STATE(); - case 42: ACCEPT_TOKEN(sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 43: + case 41: ACCEPT_TOKEN(sym_elseif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 44: + case 42: ACCEPT_TOKEN(sym_else); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(76); + lookahead == 'i') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 45: + case 43: ACCEPT_TOKEN(sym_endif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 46: + case 44: ACCEPT_TOKEN(sym_foreach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 47: + case 45: ACCEPT_TOKEN(sym_endforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 48: + case 46: ACCEPT_TOKEN(sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 49: + case 47: ACCEPT_TOKEN(sym_endwhile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 50: + case 48: ACCEPT_TOKEN(sym_function); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 51: + case 49: ACCEPT_TOKEN(sym_endfunction); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 52: + case 50: ACCEPT_TOKEN(sym_macro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 53: + case 51: ACCEPT_TOKEN(sym_endmacro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 54: + case 52: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(60); + lookahead == 'a') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 55: + case 53: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 54: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || lookahead == 'a') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(113); + 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(113); END_STATE(); case 56: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(61); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 57: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(62); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 58: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(111); + lookahead == 'c') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 59: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(80); + lookahead == 'c') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 60: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(107); + lookahead == 'c') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 61: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(81); + lookahead == 'c') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 62: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(108); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(112); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 64: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(91); + lookahead == 'd') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 65: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(114); + lookahead == 'd') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 66: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(84); + lookahead == 'd') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 67: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(77); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 68: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(78); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 69: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + lookahead == 'e') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 70: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(44); + lookahead == 'e') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 71: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 72: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(55); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 73: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 74: - 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(115); - END_STATE(); - case 75: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 76: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || lookahead == 'f') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 74: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 76: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 77: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(113); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 78: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(105); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 79: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(83); + lookahead == 'h') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 80: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(46); + lookahead == 'h') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 81: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(47); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 82: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(87); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 83: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(89); + lookahead == 'i') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 84: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(75); + lookahead == 'i') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 85: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(103); + lookahead == 'i') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 86: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(104); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(108); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 87: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(90); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 88: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(110); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || lookahead == 'l') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 89: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 90: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(71); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 91: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(57); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 92: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(50); + lookahead == 'n') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 93: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(51); + lookahead == 'n') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 94: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 95: - 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(115); - 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(115); - END_STATE(); - case 97: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); - case 98: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 99: + 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(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 96: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 97: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 98: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(104); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); + END_STATE(); + case 99: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(106); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(94); + lookahead == 'o') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(52); + lookahead == 'o') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(53); + lookahead == 'o') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(92); + lookahead == 'o') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 104: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(93); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 105: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(109); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(72); + lookahead == 'r') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(101); + lookahead == 'r') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 108: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(102); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 109: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(73); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 110: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(70); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 111: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(85); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 112: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(86); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 113: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 114: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); - END_STATE(); - case 115: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); default: return false; @@ -1537,60 +1525,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [14] = {.lex_state = 12, .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}, + [17] = {.lex_state = 13, .external_lex_state = 2}, + [18] = {.lex_state = 14, .external_lex_state = 2}, [19] = {.lex_state = 1, .external_lex_state = 1}, - [20] = {.lex_state = 1, .external_lex_state = 1}, + [20] = {.lex_state = 14, .external_lex_state = 2}, [21] = {.lex_state = 1, .external_lex_state = 1}, - [22] = {.lex_state = 1, .external_lex_state = 1}, + [22] = {.lex_state = 15, .external_lex_state = 2}, [23] = {.lex_state = 1, .external_lex_state = 1}, - [24] = {.lex_state = 1, .external_lex_state = 1}, + [24] = {.lex_state = 16, .external_lex_state = 2}, [25] = {.lex_state = 1, .external_lex_state = 1}, - [26] = {.lex_state = 1, .external_lex_state = 1}, + [26] = {.lex_state = 13, .external_lex_state = 2}, [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}, + [30] = {.lex_state = 14, .external_lex_state = 2}, + [31] = {.lex_state = 14, .external_lex_state = 2}, + [32] = {.lex_state = 15, .external_lex_state = 2}, + [33] = {.lex_state = 16, .external_lex_state = 2}, + [34] = {.lex_state = 13, .external_lex_state = 2}, [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}, + [37] = {.lex_state = 14, .external_lex_state = 2}, + [38] = {.lex_state = 14, .external_lex_state = 2}, [39] = {.lex_state = 1, .external_lex_state = 1}, - [40] = {.lex_state = 1, .external_lex_state = 1}, + [40] = {.lex_state = 15, .external_lex_state = 2}, [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}, + [43] = {.lex_state = 16, .external_lex_state = 2}, + [44] = {.lex_state = 15, .external_lex_state = 2}, [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}, + [46] = {.lex_state = 13, .external_lex_state = 2}, + [47] = {.lex_state = 16, .external_lex_state = 2}, + [48] = {.lex_state = 15, .external_lex_state = 2}, [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}, + [53] = {.lex_state = 14, .external_lex_state = 2}, + [54] = {.lex_state = 15, .external_lex_state = 2}, [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}, + [57] = {.lex_state = 16, .external_lex_state = 2}, + [58] = {.lex_state = 13, .external_lex_state = 2}, [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}, + [64] = {.lex_state = 14, .external_lex_state = 2}, [65] = {.lex_state = 1, .external_lex_state = 1}, [66] = {.lex_state = 1, .external_lex_state = 1}, - [67] = {.lex_state = 1, .external_lex_state = 1}, + [67] = {.lex_state = 15, .external_lex_state = 2}, [68] = {.lex_state = 1, .external_lex_state = 1}, [69] = {.lex_state = 1, .external_lex_state = 1}, - [70] = {.lex_state = 1, .external_lex_state = 1}, + [70] = {.lex_state = 16, .external_lex_state = 2}, [71] = {.lex_state = 1, .external_lex_state = 1}, [72] = {.lex_state = 1, .external_lex_state = 1}, [73] = {.lex_state = 1, .external_lex_state = 1}, @@ -1600,7 +1588,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [80] = {.lex_state = 13, .external_lex_state = 2}, [81] = {.lex_state = 1, .external_lex_state = 1}, [82] = {.lex_state = 1, .external_lex_state = 1}, [83] = {.lex_state = 1, .external_lex_state = 1}, @@ -1610,11 +1598,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [90] = {.lex_state = 13, .external_lex_state = 2}, + [91] = {.lex_state = 16, .external_lex_state = 2}, + [92] = {.lex_state = 13, .external_lex_state = 2}, + [93] = {.lex_state = 15, .external_lex_state = 2}, + [94] = {.lex_state = 14, .external_lex_state = 2}, [95] = {.lex_state = 1, .external_lex_state = 1}, [96] = {.lex_state = 1, .external_lex_state = 1}, [97] = {.lex_state = 1, .external_lex_state = 1}, @@ -1623,81 +1611,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [103] = {.lex_state = 13, .external_lex_state = 2}, [104] = {.lex_state = 1, .external_lex_state = 1}, - [105] = {.lex_state = 1, .external_lex_state = 1}, + [105] = {.lex_state = 16, .external_lex_state = 2}, [106] = {.lex_state = 1, .external_lex_state = 1}, - [107] = {.lex_state = 1, .external_lex_state = 1}, + [107] = {.lex_state = 15, .external_lex_state = 2}, [108] = {.lex_state = 1, .external_lex_state = 1}, - [109] = {.lex_state = 1, .external_lex_state = 1}, + [109] = {.lex_state = 14, .external_lex_state = 2}, [110] = {.lex_state = 1, .external_lex_state = 1}, [111] = {.lex_state = 1, .external_lex_state = 1}, - [112] = {.lex_state = 13, .external_lex_state = 2}, - [113] = {.lex_state = 14, .external_lex_state = 2}, - [114] = {.lex_state = 16, .external_lex_state = 2}, - [115] = {.lex_state = 15, .external_lex_state = 2}, - [116] = {.lex_state = 15, .external_lex_state = 2}, - [117] = {.lex_state = 16, .external_lex_state = 2}, - [118] = {.lex_state = 13, .external_lex_state = 2}, - [119] = {.lex_state = 14, .external_lex_state = 2}, - [120] = {.lex_state = 15, .external_lex_state = 2}, - [121] = {.lex_state = 15, .external_lex_state = 2}, - [122] = {.lex_state = 16, .external_lex_state = 2}, - [123] = {.lex_state = 16, .external_lex_state = 2}, - [124] = {.lex_state = 14, .external_lex_state = 2}, - [125] = {.lex_state = 15, .external_lex_state = 2}, - [126] = {.lex_state = 16, .external_lex_state = 2}, - [127] = {.lex_state = 15, .external_lex_state = 2}, - [128] = {.lex_state = 13, .external_lex_state = 2}, - [129] = {.lex_state = 14, .external_lex_state = 2}, - [130] = {.lex_state = 16, .external_lex_state = 2}, - [131] = {.lex_state = 13, .external_lex_state = 2}, - [132] = {.lex_state = 13, .external_lex_state = 2}, - [133] = {.lex_state = 16, .external_lex_state = 2}, - [134] = {.lex_state = 14, .external_lex_state = 2}, - [135] = {.lex_state = 15, .external_lex_state = 2}, - [136] = {.lex_state = 13, .external_lex_state = 2}, + [112] = {.lex_state = 1, .external_lex_state = 1}, + [113] = {.lex_state = 1, .external_lex_state = 1}, + [114] = {.lex_state = 1, .external_lex_state = 1}, + [115] = {.lex_state = 1, .external_lex_state = 1}, + [116] = {.lex_state = 1, .external_lex_state = 1}, + [117] = {.lex_state = 1, .external_lex_state = 1}, + [118] = {.lex_state = 1, .external_lex_state = 1}, + [119] = {.lex_state = 1, .external_lex_state = 1}, + [120] = {.lex_state = 1, .external_lex_state = 1}, + [121] = {.lex_state = 1, .external_lex_state = 1}, + [122] = {.lex_state = 1, .external_lex_state = 1}, + [123] = {.lex_state = 1, .external_lex_state = 1}, + [124] = {.lex_state = 1, .external_lex_state = 1}, + [125] = {.lex_state = 1, .external_lex_state = 1}, + [126] = {.lex_state = 1, .external_lex_state = 1}, + [127] = {.lex_state = 1, .external_lex_state = 1}, + [128] = {.lex_state = 1, .external_lex_state = 1}, + [129] = {.lex_state = 1, .external_lex_state = 1}, + [130] = {.lex_state = 1, .external_lex_state = 1}, + [131] = {.lex_state = 1, .external_lex_state = 1}, + [132] = {.lex_state = 1, .external_lex_state = 1}, + [133] = {.lex_state = 1, .external_lex_state = 1}, + [134] = {.lex_state = 1, .external_lex_state = 1}, + [135] = {.lex_state = 1, .external_lex_state = 1}, + [136] = {.lex_state = 1, .external_lex_state = 1}, [137] = {.lex_state = 14, .external_lex_state = 2}, - [138] = {.lex_state = 13, .external_lex_state = 2}, - [139] = {.lex_state = 15, .external_lex_state = 2}, - [140] = {.lex_state = 16, .external_lex_state = 2}, - [141] = {.lex_state = 16, .external_lex_state = 2}, - [142] = {.lex_state = 15, .external_lex_state = 2}, - [143] = {.lex_state = 13, .external_lex_state = 2}, - [144] = {.lex_state = 13, .external_lex_state = 2}, - [145] = {.lex_state = 13, .external_lex_state = 2}, - [146] = {.lex_state = 14, .external_lex_state = 2}, - [147] = {.lex_state = 14, .external_lex_state = 2}, - [148] = {.lex_state = 14, .external_lex_state = 2}, - [149] = {.lex_state = 15, .external_lex_state = 2}, - [150] = {.lex_state = 16, .external_lex_state = 2}, - [151] = {.lex_state = 15, .external_lex_state = 2}, + [138] = {.lex_state = 1, .external_lex_state = 1}, + [139] = {.lex_state = 1, .external_lex_state = 1}, + [140] = {.lex_state = 1, .external_lex_state = 1}, + [141] = {.lex_state = 1, .external_lex_state = 1}, + [142] = {.lex_state = 13, .external_lex_state = 2}, + [143] = {.lex_state = 15, .external_lex_state = 2}, + [144] = {.lex_state = 1, .external_lex_state = 1}, + [145] = {.lex_state = 16, .external_lex_state = 2}, + [146] = {.lex_state = 16, .external_lex_state = 2}, + [147] = {.lex_state = 16, .external_lex_state = 2}, + [148] = {.lex_state = 1, .external_lex_state = 1}, + [149] = {.lex_state = 13, .external_lex_state = 2}, + [150] = {.lex_state = 15, .external_lex_state = 2}, + [151] = {.lex_state = 1, .external_lex_state = 1}, [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 14, .external_lex_state = 2}, - [154] = {.lex_state = 16, .external_lex_state = 2}, - [155] = {.lex_state = 14, .external_lex_state = 2}, - [156] = {.lex_state = 16, .external_lex_state = 2}, - [157] = {.lex_state = 15, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, - [159] = {.lex_state = 14, .external_lex_state = 2}, - [160] = {.lex_state = 0, .external_lex_state = 1}, - [161] = {.lex_state = 0, .external_lex_state = 1}, + [153] = {.lex_state = 16, .external_lex_state = 2}, + [154] = {.lex_state = 15, .external_lex_state = 2}, + [155] = {.lex_state = 1, .external_lex_state = 1}, + [156] = {.lex_state = 14, .external_lex_state = 2}, + [157] = {.lex_state = 1, .external_lex_state = 1}, + [158] = {.lex_state = 1, .external_lex_state = 1}, + [159] = {.lex_state = 1, .external_lex_state = 1}, + [160] = {.lex_state = 13, .external_lex_state = 2}, + [161] = {.lex_state = 15, .external_lex_state = 2}, [162] = {.lex_state = 17, .external_lex_state = 2}, - [163] = {.lex_state = 0, .external_lex_state = 1}, - [164] = {.lex_state = 17, .external_lex_state = 2}, - [165] = {.lex_state = 0, .external_lex_state = 1}, + [163] = {.lex_state = 16, .external_lex_state = 2}, + [164] = {.lex_state = 14, .external_lex_state = 2}, + [165] = {.lex_state = 17, .external_lex_state = 2}, [166] = {.lex_state = 0, .external_lex_state = 1}, [167] = {.lex_state = 0, .external_lex_state = 1}, [168] = {.lex_state = 0, .external_lex_state = 1}, [169] = {.lex_state = 0, .external_lex_state = 1}, [170] = {.lex_state = 0, .external_lex_state = 1}, - [171] = {.lex_state = 15, .external_lex_state = 2}, + [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 = 13, .external_lex_state = 2}, - [177] = {.lex_state = 16, .external_lex_state = 2}, + [175] = {.lex_state = 0, .external_lex_state = 1}, + [176] = {.lex_state = 0, .external_lex_state = 1}, + [177] = {.lex_state = 0, .external_lex_state = 1}, [178] = {.lex_state = 0, .external_lex_state = 1}, [179] = {.lex_state = 0, .external_lex_state = 1}, [180] = {.lex_state = 0, .external_lex_state = 1}, @@ -1729,29 +1717,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, + [209] = {.lex_state = 3, .external_lex_state = 2}, [210] = {.lex_state = 3, .external_lex_state = 2}, [211] = {.lex_state = 3, .external_lex_state = 2}, - [212] = {.lex_state = 2, .external_lex_state = 2}, + [212] = {.lex_state = 3, .external_lex_state = 2}, [213] = {.lex_state = 3, .external_lex_state = 2}, [214] = {.lex_state = 3, .external_lex_state = 2}, [215] = {.lex_state = 3, .external_lex_state = 2}, [216] = {.lex_state = 3, .external_lex_state = 2}, [217] = {.lex_state = 3, .external_lex_state = 2}, [218] = {.lex_state = 3, .external_lex_state = 2}, - [219] = {.lex_state = 39, .external_lex_state = 2}, - [220] = {.lex_state = 0, .external_lex_state = 2}, + [219] = {.lex_state = 37, .external_lex_state = 2}, + [220] = {.lex_state = 3, .external_lex_state = 2}, [221] = {.lex_state = 3, .external_lex_state = 2}, [222] = {.lex_state = 3, .external_lex_state = 2}, - [223] = {.lex_state = 3, .external_lex_state = 2}, + [223] = {.lex_state = 2, .external_lex_state = 2}, [224] = {.lex_state = 3, .external_lex_state = 2}, - [225] = {.lex_state = 0, .external_lex_state = 2}, - [226] = {.lex_state = 3, .external_lex_state = 2}, - [227] = {.lex_state = 39, .external_lex_state = 2}, + [225] = {.lex_state = 37, .external_lex_state = 2}, + [226] = {.lex_state = 2, .external_lex_state = 2}, + [227] = {.lex_state = 0, .external_lex_state = 2}, [228] = {.lex_state = 3, .external_lex_state = 2}, [229] = {.lex_state = 3, .external_lex_state = 2}, [230] = {.lex_state = 3, .external_lex_state = 2}, - [231] = {.lex_state = 3, .external_lex_state = 2}, + [231] = {.lex_state = 0, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 1}, [233] = {.lex_state = 1, .external_lex_state = 1}, [234] = {.lex_state = 1, .external_lex_state = 1}, @@ -1761,24 +1749,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [238] = {.lex_state = 1, .external_lex_state = 1}, [239] = {.lex_state = 1, .external_lex_state = 1}, [240] = {.lex_state = 12, .external_lex_state = 2}, - [241] = {.lex_state = 3, .external_lex_state = 2}, + [241] = {.lex_state = 12, .external_lex_state = 2}, [242] = {.lex_state = 12, .external_lex_state = 2}, [243] = {.lex_state = 12, .external_lex_state = 2}, [244] = {.lex_state = 12, .external_lex_state = 2}, - [245] = {.lex_state = 2, .external_lex_state = 2}, - [246] = {.lex_state = 2, .external_lex_state = 2}, + [245] = {.lex_state = 12, .external_lex_state = 2}, + [246] = {.lex_state = 12, .external_lex_state = 2}, [247] = {.lex_state = 12, .external_lex_state = 2}, [248] = {.lex_state = 12, .external_lex_state = 2}, [249] = {.lex_state = 12, .external_lex_state = 2}, - [250] = {.lex_state = 2, .external_lex_state = 2}, + [250] = {.lex_state = 12, .external_lex_state = 2}, [251] = {.lex_state = 12, .external_lex_state = 2}, [252] = {.lex_state = 12, .external_lex_state = 2}, [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 12, .external_lex_state = 2}, [255] = {.lex_state = 12, .external_lex_state = 2}, [256] = {.lex_state = 12, .external_lex_state = 2}, - [257] = {.lex_state = 2, .external_lex_state = 2}, - [258] = {.lex_state = 2, .external_lex_state = 2}, + [257] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 12, .external_lex_state = 2}, [259] = {.lex_state = 12, .external_lex_state = 2}, [260] = {.lex_state = 12, .external_lex_state = 2}, [261] = {.lex_state = 12, .external_lex_state = 2}, @@ -1787,200 +1775,200 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 12, .external_lex_state = 2}, [265] = {.lex_state = 12, .external_lex_state = 2}, [266] = {.lex_state = 12, .external_lex_state = 2}, - [267] = {.lex_state = 3, .external_lex_state = 2}, - [268] = {.lex_state = 3, .external_lex_state = 2}, + [267] = {.lex_state = 12, .external_lex_state = 2}, + [268] = {.lex_state = 12, .external_lex_state = 2}, [269] = {.lex_state = 12, .external_lex_state = 2}, [270] = {.lex_state = 12, .external_lex_state = 2}, [271] = {.lex_state = 12, .external_lex_state = 2}, - [272] = {.lex_state = 0, .external_lex_state = 2}, - [273] = {.lex_state = 0, .external_lex_state = 2}, + [272] = {.lex_state = 12, .external_lex_state = 2}, + [273] = {.lex_state = 12, .external_lex_state = 2}, [274] = {.lex_state = 12, .external_lex_state = 2}, - [275] = {.lex_state = 3, .external_lex_state = 2}, + [275] = {.lex_state = 12, .external_lex_state = 2}, [276] = {.lex_state = 12, .external_lex_state = 2}, [277] = {.lex_state = 12, .external_lex_state = 2}, [278] = {.lex_state = 12, .external_lex_state = 2}, [279] = {.lex_state = 12, .external_lex_state = 2}, - [280] = {.lex_state = 12, .external_lex_state = 2}, - [281] = {.lex_state = 12, .external_lex_state = 2}, - [282] = {.lex_state = 12, .external_lex_state = 2}, - [283] = {.lex_state = 12, .external_lex_state = 2}, - [284] = {.lex_state = 12, .external_lex_state = 2}, - [285] = {.lex_state = 12, .external_lex_state = 2}, - [286] = {.lex_state = 0, .external_lex_state = 2}, - [287] = {.lex_state = 12, .external_lex_state = 2}, - [288] = {.lex_state = 3, .external_lex_state = 2}, - [289] = {.lex_state = 12, .external_lex_state = 2}, - [290] = {.lex_state = 12, .external_lex_state = 2}, - [291] = {.lex_state = 12, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, - [293] = {.lex_state = 0, .external_lex_state = 2}, - [294] = {.lex_state = 0, .external_lex_state = 2}, - [295] = {.lex_state = 39, .external_lex_state = 2}, - [296] = {.lex_state = 39, .external_lex_state = 2}, - [297] = {.lex_state = 39, .external_lex_state = 2}, - [298] = {.lex_state = 39, .external_lex_state = 2}, - [299] = {.lex_state = 39, .external_lex_state = 2}, - [300] = {.lex_state = 14, .external_lex_state = 2}, + [280] = {.lex_state = 16, .external_lex_state = 2}, + [281] = {.lex_state = 17, .external_lex_state = 2}, + [282] = {.lex_state = 15, .external_lex_state = 2}, + [283] = {.lex_state = 15, .external_lex_state = 2}, + [284] = {.lex_state = 15, .external_lex_state = 2}, + [285] = {.lex_state = 15, .external_lex_state = 2}, + [286] = {.lex_state = 15, .external_lex_state = 2}, + [287] = {.lex_state = 15, .external_lex_state = 2}, + [288] = {.lex_state = 15, .external_lex_state = 2}, + [289] = {.lex_state = 15, .external_lex_state = 2}, + [290] = {.lex_state = 15, .external_lex_state = 2}, + [291] = {.lex_state = 15, .external_lex_state = 2}, + [292] = {.lex_state = 15, .external_lex_state = 2}, + [293] = {.lex_state = 3, .external_lex_state = 2}, + [294] = {.lex_state = 15, .external_lex_state = 2}, + [295] = {.lex_state = 15, .external_lex_state = 2}, + [296] = {.lex_state = 15, .external_lex_state = 2}, + [297] = {.lex_state = 3, .external_lex_state = 2}, + [298] = {.lex_state = 3, .external_lex_state = 2}, + [299] = {.lex_state = 15, .external_lex_state = 2}, + [300] = {.lex_state = 15, .external_lex_state = 2}, [301] = {.lex_state = 15, .external_lex_state = 2}, [302] = {.lex_state = 15, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 2}, - [304] = {.lex_state = 13, .external_lex_state = 2}, - [305] = {.lex_state = 13, .external_lex_state = 2}, - [306] = {.lex_state = 13, .external_lex_state = 2}, - [307] = {.lex_state = 13, .external_lex_state = 2}, - [308] = {.lex_state = 17, .external_lex_state = 2}, - [309] = {.lex_state = 15, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, - [311] = {.lex_state = 13, .external_lex_state = 2}, - [312] = {.lex_state = 13, .external_lex_state = 2}, - [313] = {.lex_state = 13, .external_lex_state = 2}, - [314] = {.lex_state = 13, .external_lex_state = 2}, - [315] = {.lex_state = 13, .external_lex_state = 2}, - [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 13, .external_lex_state = 2}, - [320] = {.lex_state = 13, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, - [322] = {.lex_state = 15, .external_lex_state = 2}, - [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 13, .external_lex_state = 2}, - [326] = {.lex_state = 13, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, - [328] = {.lex_state = 13, .external_lex_state = 2}, - [329] = {.lex_state = 15, .external_lex_state = 2}, - [330] = {.lex_state = 15, .external_lex_state = 2}, - [331] = {.lex_state = 13, .external_lex_state = 2}, - [332] = {.lex_state = 13, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, - [335] = {.lex_state = 13, .external_lex_state = 2}, - [336] = {.lex_state = 13, .external_lex_state = 2}, - [337] = {.lex_state = 13, .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 = 17, .external_lex_state = 2}, - [364] = {.lex_state = 14, .external_lex_state = 2}, - [365] = {.lex_state = 14, .external_lex_state = 2}, - [366] = {.lex_state = 14, .external_lex_state = 2}, - [367] = {.lex_state = 14, .external_lex_state = 2}, - [368] = {.lex_state = 15, .external_lex_state = 2}, - [369] = {.lex_state = 17, .external_lex_state = 2}, - [370] = {.lex_state = 17, .external_lex_state = 2}, - [371] = {.lex_state = 17, .external_lex_state = 2}, - [372] = {.lex_state = 17, .external_lex_state = 2}, - [373] = {.lex_state = 17, .external_lex_state = 2}, - [374] = {.lex_state = 17, .external_lex_state = 2}, - [375] = {.lex_state = 17, .external_lex_state = 2}, + [303] = {.lex_state = 16, .external_lex_state = 2}, + [304] = {.lex_state = 16, .external_lex_state = 2}, + [305] = {.lex_state = 16, .external_lex_state = 2}, + [306] = {.lex_state = 16, .external_lex_state = 2}, + [307] = {.lex_state = 16, .external_lex_state = 2}, + [308] = {.lex_state = 14, .external_lex_state = 2}, + [309] = {.lex_state = 37, .external_lex_state = 2}, + [310] = {.lex_state = 37, .external_lex_state = 2}, + [311] = {.lex_state = 16, .external_lex_state = 2}, + [312] = {.lex_state = 16, .external_lex_state = 2}, + [313] = {.lex_state = 16, .external_lex_state = 2}, + [314] = {.lex_state = 16, .external_lex_state = 2}, + [315] = {.lex_state = 16, .external_lex_state = 2}, + [316] = {.lex_state = 16, .external_lex_state = 2}, + [317] = {.lex_state = 16, .external_lex_state = 2}, + [318] = {.lex_state = 16, .external_lex_state = 2}, + [319] = {.lex_state = 16, .external_lex_state = 2}, + [320] = {.lex_state = 16, .external_lex_state = 2}, + [321] = {.lex_state = 16, .external_lex_state = 2}, + [322] = {.lex_state = 16, .external_lex_state = 2}, + [323] = {.lex_state = 16, .external_lex_state = 2}, + [324] = {.lex_state = 16, .external_lex_state = 2}, + [325] = {.lex_state = 16, .external_lex_state = 2}, + [326] = {.lex_state = 16, .external_lex_state = 2}, + [327] = {.lex_state = 16, .external_lex_state = 2}, + [328] = {.lex_state = 16, .external_lex_state = 2}, + [329] = {.lex_state = 37, .external_lex_state = 2}, + [330] = {.lex_state = 16, .external_lex_state = 2}, + [331] = {.lex_state = 16, .external_lex_state = 2}, + [332] = {.lex_state = 16, .external_lex_state = 2}, + [333] = {.lex_state = 37, .external_lex_state = 2}, + [334] = {.lex_state = 37, .external_lex_state = 2}, + [335] = {.lex_state = 16, .external_lex_state = 2}, + [336] = {.lex_state = 16, .external_lex_state = 2}, + [337] = {.lex_state = 16, .external_lex_state = 2}, + [338] = {.lex_state = 15, .external_lex_state = 2}, + [339] = {.lex_state = 13, .external_lex_state = 2}, + [340] = {.lex_state = 13, .external_lex_state = 2}, + [341] = {.lex_state = 13, .external_lex_state = 2}, + [342] = {.lex_state = 13, .external_lex_state = 2}, + [343] = {.lex_state = 13, .external_lex_state = 2}, + [344] = {.lex_state = 13, .external_lex_state = 2}, + [345] = {.lex_state = 13, .external_lex_state = 2}, + [346] = {.lex_state = 13, .external_lex_state = 2}, + [347] = {.lex_state = 13, .external_lex_state = 2}, + [348] = {.lex_state = 13, .external_lex_state = 2}, + [349] = {.lex_state = 13, .external_lex_state = 2}, + [350] = {.lex_state = 13, .external_lex_state = 2}, + [351] = {.lex_state = 13, .external_lex_state = 2}, + [352] = {.lex_state = 13, .external_lex_state = 2}, + [353] = {.lex_state = 13, .external_lex_state = 2}, + [354] = {.lex_state = 13, .external_lex_state = 2}, + [355] = {.lex_state = 13, .external_lex_state = 2}, + [356] = {.lex_state = 13, .external_lex_state = 2}, + [357] = {.lex_state = 13, .external_lex_state = 2}, + [358] = {.lex_state = 13, .external_lex_state = 2}, + [359] = {.lex_state = 13, .external_lex_state = 2}, + [360] = {.lex_state = 13, .external_lex_state = 2}, + [361] = {.lex_state = 13, .external_lex_state = 2}, + [362] = {.lex_state = 13, .external_lex_state = 2}, + [363] = {.lex_state = 13, .external_lex_state = 2}, + [364] = {.lex_state = 13, .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 = 15, .external_lex_state = 2}, + [370] = {.lex_state = 15, .external_lex_state = 2}, + [371] = {.lex_state = 15, .external_lex_state = 2}, + [372] = {.lex_state = 15, .external_lex_state = 2}, + [373] = {.lex_state = 15, .external_lex_state = 2}, + [374] = {.lex_state = 3, .external_lex_state = 2}, + [375] = {.lex_state = 3, .external_lex_state = 2}, [376] = {.lex_state = 15, .external_lex_state = 2}, [377] = {.lex_state = 15, .external_lex_state = 2}, [378] = {.lex_state = 15, .external_lex_state = 2}, [379] = {.lex_state = 15, .external_lex_state = 2}, [380] = {.lex_state = 15, .external_lex_state = 2}, - [381] = {.lex_state = 16, .external_lex_state = 2}, - [382] = {.lex_state = 15, .external_lex_state = 2}, + [381] = {.lex_state = 14, .external_lex_state = 2}, + [382] = {.lex_state = 14, .external_lex_state = 2}, [383] = {.lex_state = 17, .external_lex_state = 2}, - [384] = {.lex_state = 17, .external_lex_state = 2}, + [384] = {.lex_state = 14, .external_lex_state = 2}, [385] = {.lex_state = 17, .external_lex_state = 2}, - [386] = {.lex_state = 15, .external_lex_state = 2}, - [387] = {.lex_state = 17, .external_lex_state = 2}, + [386] = {.lex_state = 14, .external_lex_state = 2}, + [387] = {.lex_state = 0, .external_lex_state = 2}, [388] = {.lex_state = 17, .external_lex_state = 2}, - [389] = {.lex_state = 17, .external_lex_state = 2}, - [390] = {.lex_state = 16, .external_lex_state = 2}, - [391] = {.lex_state = 16, .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 = 17, .external_lex_state = 2}, - [396] = {.lex_state = 15, .external_lex_state = 2}, - [397] = {.lex_state = 17, .external_lex_state = 2}, - [398] = {.lex_state = 16, .external_lex_state = 2}, + [389] = {.lex_state = 0, .external_lex_state = 2}, + [390] = {.lex_state = 17, .external_lex_state = 2}, + [391] = {.lex_state = 17, .external_lex_state = 2}, + [392] = {.lex_state = 14, .external_lex_state = 2}, + [393] = {.lex_state = 14, .external_lex_state = 2}, + [394] = {.lex_state = 14, .external_lex_state = 2}, + [395] = {.lex_state = 14, .external_lex_state = 2}, + [396] = {.lex_state = 0, .external_lex_state = 2}, + [397] = {.lex_state = 14, .external_lex_state = 2}, + [398] = {.lex_state = 15, .external_lex_state = 2}, [399] = {.lex_state = 16, .external_lex_state = 2}, - [400] = {.lex_state = 16, .external_lex_state = 2}, - [401] = {.lex_state = 15, .external_lex_state = 2}, + [400] = {.lex_state = 14, .external_lex_state = 2}, + [401] = {.lex_state = 14, .external_lex_state = 2}, [402] = {.lex_state = 15, .external_lex_state = 2}, - [403] = {.lex_state = 16, .external_lex_state = 2}, - [404] = {.lex_state = 15, .external_lex_state = 2}, - [405] = {.lex_state = 13, .external_lex_state = 2}, - [406] = {.lex_state = 14, .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 = 17, .external_lex_state = 2}, - [411] = {.lex_state = 14, .external_lex_state = 2}, - [412] = {.lex_state = 13, .external_lex_state = 2}, - [413] = {.lex_state = 15, .external_lex_state = 2}, - [414] = {.lex_state = 16, .external_lex_state = 2}, - [415] = {.lex_state = 15, .external_lex_state = 2}, - [416] = {.lex_state = 17, .external_lex_state = 2}, - [417] = {.lex_state = 15, .external_lex_state = 2}, - [418] = {.lex_state = 15, .external_lex_state = 2}, - [419] = {.lex_state = 16, .external_lex_state = 2}, - [420] = {.lex_state = 15, .external_lex_state = 2}, - [421] = {.lex_state = 15, .external_lex_state = 2}, - [422] = {.lex_state = 17, .external_lex_state = 2}, + [403] = {.lex_state = 13, .external_lex_state = 2}, + [404] = {.lex_state = 17, .external_lex_state = 2}, + [405] = {.lex_state = 17, .external_lex_state = 2}, + [406] = {.lex_state = 17, .external_lex_state = 2}, + [407] = {.lex_state = 17, .external_lex_state = 2}, + [408] = {.lex_state = 14, .external_lex_state = 2}, + [409] = {.lex_state = 14, .external_lex_state = 2}, + [410] = {.lex_state = 14, .external_lex_state = 2}, + [411] = {.lex_state = 17, .external_lex_state = 2}, + [412] = {.lex_state = 14, .external_lex_state = 2}, + [413] = {.lex_state = 14, .external_lex_state = 2}, + [414] = {.lex_state = 14, .external_lex_state = 2}, + [415] = {.lex_state = 14, .external_lex_state = 2}, + [416] = {.lex_state = 14, .external_lex_state = 2}, + [417] = {.lex_state = 14, .external_lex_state = 2}, + [418] = {.lex_state = 17, .external_lex_state = 2}, + [419] = {.lex_state = 14, .external_lex_state = 2}, + [420] = {.lex_state = 14, .external_lex_state = 2}, + [421] = {.lex_state = 14, .external_lex_state = 2}, + [422] = {.lex_state = 14, .external_lex_state = 2}, [423] = {.lex_state = 15, .external_lex_state = 2}, [424] = {.lex_state = 16, .external_lex_state = 2}, - [425] = {.lex_state = 15, .external_lex_state = 2}, - [426] = {.lex_state = 17, .external_lex_state = 2}, - [427] = {.lex_state = 16, .external_lex_state = 2}, - [428] = {.lex_state = 16, .external_lex_state = 2}, + [425] = {.lex_state = 14, .external_lex_state = 2}, + [426] = {.lex_state = 14, .external_lex_state = 2}, + [427] = {.lex_state = 13, .external_lex_state = 2}, + [428] = {.lex_state = 0, .external_lex_state = 2}, [429] = {.lex_state = 17, .external_lex_state = 2}, - [430] = {.lex_state = 16, .external_lex_state = 2}, - [431] = {.lex_state = 17, .external_lex_state = 2}, - [432] = {.lex_state = 16, .external_lex_state = 2}, - [433] = {.lex_state = 16, .external_lex_state = 2}, - [434] = {.lex_state = 16, .external_lex_state = 2}, - [435] = {.lex_state = 17, .external_lex_state = 2}, - [436] = {.lex_state = 16, .external_lex_state = 2}, - [437] = {.lex_state = 16, .external_lex_state = 2}, - [438] = {.lex_state = 16, .external_lex_state = 2}, - [439] = {.lex_state = 16, .external_lex_state = 2}, - [440] = {.lex_state = 17, .external_lex_state = 2}, + [430] = {.lex_state = 17, .external_lex_state = 2}, + [431] = {.lex_state = 0, .external_lex_state = 2}, + [432] = {.lex_state = 17, .external_lex_state = 2}, + [433] = {.lex_state = 17, .external_lex_state = 2}, + [434] = {.lex_state = 14, .external_lex_state = 2}, + [435] = {.lex_state = 14, .external_lex_state = 2}, + [436] = {.lex_state = 14, .external_lex_state = 2}, + [437] = {.lex_state = 17, .external_lex_state = 2}, + [438] = {.lex_state = 17, .external_lex_state = 2}, + [439] = {.lex_state = 14, .external_lex_state = 2}, + [440] = {.lex_state = 14, .external_lex_state = 2}, [441] = {.lex_state = 14, .external_lex_state = 2}, - [442] = {.lex_state = 13, .external_lex_state = 2}, - [443] = {.lex_state = 15, .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}, + [442] = {.lex_state = 17, .external_lex_state = 2}, + [443] = {.lex_state = 17, .external_lex_state = 2}, + [444] = {.lex_state = 13, .external_lex_state = 2}, + [445] = {.lex_state = 17, .external_lex_state = 2}, + [446] = {.lex_state = 17, .external_lex_state = 2}, + [447] = {.lex_state = 2, .external_lex_state = 2}, + [448] = {.lex_state = 2, .external_lex_state = 2}, + [449] = {.lex_state = 2, .external_lex_state = 2}, [450] = {.lex_state = 16, .external_lex_state = 2}, - [451] = {.lex_state = 16, .external_lex_state = 2}, - [452] = {.lex_state = 16, .external_lex_state = 2}, - [453] = {.lex_state = 16, .external_lex_state = 2}, - [454] = {.lex_state = 16, .external_lex_state = 2}, + [451] = {.lex_state = 17, .external_lex_state = 2}, + [452] = {.lex_state = 2, .external_lex_state = 2}, + [453] = {.lex_state = 2, .external_lex_state = 2}, + [454] = {.lex_state = 17, .external_lex_state = 2}, [455] = {.lex_state = 17, .external_lex_state = 2}, [456] = {.lex_state = 17, .external_lex_state = 2}, - [457] = {.lex_state = 16, .external_lex_state = 2}, + [457] = {.lex_state = 17, .external_lex_state = 2}, [458] = {.lex_state = 17, .external_lex_state = 2}, - [459] = {.lex_state = 16, .external_lex_state = 2}, - [460] = {.lex_state = 17, .external_lex_state = 2}, + [459] = {.lex_state = 17, .external_lex_state = 2}, + [460] = {.lex_state = 15, .external_lex_state = 2}, [461] = {.lex_state = 17, .external_lex_state = 2}, [462] = {.lex_state = 3, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, @@ -1991,12 +1979,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [471] = {.lex_state = 5, .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}, + [476] = {.lex_state = 5, .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}, @@ -2005,11 +1993,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [485] = {.lex_state = 5, .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}, + [489] = {.lex_state = 5, .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}, @@ -2049,7 +2037,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [529] = {.lex_state = 5, .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}, @@ -2069,131 +2057,136 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [546] = {.lex_state = 3, .external_lex_state = 2}, [547] = {.lex_state = 3, .external_lex_state = 2}, [548] = {.lex_state = 3, .external_lex_state = 2}, - [549] = {.lex_state = 40, .external_lex_state = 2}, - [550] = {.lex_state = 40, .external_lex_state = 2}, - [551] = {.lex_state = 40, .external_lex_state = 2}, - [552] = {.lex_state = 40, .external_lex_state = 2}, - [553] = {.lex_state = 40, .external_lex_state = 2}, - [554] = {.lex_state = 40, .external_lex_state = 2}, - [555] = {.lex_state = 40, .external_lex_state = 2}, - [556] = {.lex_state = 40, .external_lex_state = 2}, - [557] = {.lex_state = 40, .external_lex_state = 2}, - [558] = {.lex_state = 40, .external_lex_state = 2}, - [559] = {.lex_state = 40, .external_lex_state = 2}, - [560] = {.lex_state = 40, .external_lex_state = 2}, - [561] = {.lex_state = 40, .external_lex_state = 2}, - [562] = {.lex_state = 40, .external_lex_state = 2}, - [563] = {.lex_state = 40, .external_lex_state = 2}, - [564] = {.lex_state = 40, .external_lex_state = 2}, - [565] = {.lex_state = 40, .external_lex_state = 2}, - [566] = {.lex_state = 40, .external_lex_state = 2}, - [567] = {.lex_state = 40, .external_lex_state = 2}, - [568] = {.lex_state = 40, .external_lex_state = 2}, - [569] = {.lex_state = 40, .external_lex_state = 2}, - [570] = {.lex_state = 40, .external_lex_state = 2}, - [571] = {.lex_state = 40, .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 = 0, .external_lex_state = 2}, - [576] = {.lex_state = 0, .external_lex_state = 2}, - [577] = {.lex_state = 0, .external_lex_state = 2}, - [578] = {.lex_state = 17, .external_lex_state = 2}, - [579] = {.lex_state = 17, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, - [584] = {.lex_state = 0, .external_lex_state = 2}, + [549] = {.lex_state = 3, .external_lex_state = 2}, + [550] = {.lex_state = 3, .external_lex_state = 2}, + [551] = {.lex_state = 3, .external_lex_state = 2}, + [552] = {.lex_state = 3, .external_lex_state = 2}, + [553] = {.lex_state = 3, .external_lex_state = 2}, + [554] = {.lex_state = 38, .external_lex_state = 2}, + [555] = {.lex_state = 38, .external_lex_state = 2}, + [556] = {.lex_state = 38, .external_lex_state = 2}, + [557] = {.lex_state = 38, .external_lex_state = 2}, + [558] = {.lex_state = 38, .external_lex_state = 2}, + [559] = {.lex_state = 38, .external_lex_state = 2}, + [560] = {.lex_state = 38, .external_lex_state = 2}, + [561] = {.lex_state = 38, .external_lex_state = 2}, + [562] = {.lex_state = 38, .external_lex_state = 2}, + [563] = {.lex_state = 38, .external_lex_state = 2}, + [564] = {.lex_state = 38, .external_lex_state = 2}, + [565] = {.lex_state = 38, .external_lex_state = 2}, + [566] = {.lex_state = 38, .external_lex_state = 2}, + [567] = {.lex_state = 38, .external_lex_state = 2}, + [568] = {.lex_state = 38, .external_lex_state = 2}, + [569] = {.lex_state = 38, .external_lex_state = 2}, + [570] = {.lex_state = 38, .external_lex_state = 2}, + [571] = {.lex_state = 38, .external_lex_state = 2}, + [572] = {.lex_state = 38, .external_lex_state = 2}, + [573] = {.lex_state = 38, .external_lex_state = 2}, + [574] = {.lex_state = 38, .external_lex_state = 2}, + [575] = {.lex_state = 38, .external_lex_state = 2}, + [576] = {.lex_state = 38, .external_lex_state = 2}, + [577] = {.lex_state = 38, .external_lex_state = 2}, + [578] = {.lex_state = 38, .external_lex_state = 2}, + [579] = {.lex_state = 38, .external_lex_state = 2}, + [580] = {.lex_state = 0, .external_lex_state = 2}, + [581] = {.lex_state = 39, .external_lex_state = 2}, + [582] = {.lex_state = 17, .external_lex_state = 2}, + [583] = {.lex_state = 39, .external_lex_state = 2}, + [584] = {.lex_state = 39, .external_lex_state = 2}, [585] = {.lex_state = 17, .external_lex_state = 2}, - [586] = {.lex_state = 0, .external_lex_state = 2}, + [586] = {.lex_state = 17, .external_lex_state = 2}, [587] = {.lex_state = 0, .external_lex_state = 2}, - [588] = {.lex_state = 0, .external_lex_state = 2}, - [589] = {.lex_state = 0, .external_lex_state = 2}, - [590] = {.lex_state = 0, .external_lex_state = 2}, - [591] = {.lex_state = 17, .external_lex_state = 2}, - [592] = {.lex_state = 17, .external_lex_state = 2}, - [593] = {.lex_state = 0, .external_lex_state = 2}, - [594] = {.lex_state = 17, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, + [588] = {.lex_state = 17, .external_lex_state = 2}, + [589] = {.lex_state = 39, .external_lex_state = 2}, + [590] = {.lex_state = 39, .external_lex_state = 2}, + [591] = {.lex_state = 39, .external_lex_state = 2}, + [592] = {.lex_state = 39, .external_lex_state = 2}, + [593] = {.lex_state = 39, .external_lex_state = 2}, + [594] = {.lex_state = 0, .external_lex_state = 2}, + [595] = {.lex_state = 0, .external_lex_state = 2}, + [596] = {.lex_state = 0, .external_lex_state = 2}, + [597] = {.lex_state = 0, .external_lex_state = 2}, + [598] = {.lex_state = 0, .external_lex_state = 2}, [599] = {.lex_state = 0, .external_lex_state = 2}, [600] = {.lex_state = 0, .external_lex_state = 2}, [601] = {.lex_state = 0, .external_lex_state = 2}, [602] = {.lex_state = 0, .external_lex_state = 2}, [603] = {.lex_state = 0, .external_lex_state = 2}, - [604] = {.lex_state = 17, .external_lex_state = 2}, - [605] = {.lex_state = 17, .external_lex_state = 2}, - [606] = {.lex_state = 0, .external_lex_state = 2}, - [607] = {.lex_state = 0, .external_lex_state = 2}, - [608] = {.lex_state = 17, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 0, .external_lex_state = 2}, + [604] = {.lex_state = 39, .external_lex_state = 2}, + [605] = {.lex_state = 39, .external_lex_state = 2}, + [606] = {.lex_state = 17, .external_lex_state = 2}, + [607] = {.lex_state = 17, .external_lex_state = 2}, + [608] = {.lex_state = 39, .external_lex_state = 2}, + [609] = {.lex_state = 39, .external_lex_state = 2}, + [610] = {.lex_state = 39, .external_lex_state = 2}, + [611] = {.lex_state = 39, .external_lex_state = 2}, + [612] = {.lex_state = 0, .external_lex_state = 2}, + [613] = {.lex_state = 17, .external_lex_state = 2}, [614] = {.lex_state = 0, .external_lex_state = 2}, [615] = {.lex_state = 0, .external_lex_state = 2}, [616] = {.lex_state = 0, .external_lex_state = 2}, - [617] = {.lex_state = 17, .external_lex_state = 2}, - [618] = {.lex_state = 17, .external_lex_state = 2}, - [619] = {.lex_state = 0, .external_lex_state = 2}, - [620] = {.lex_state = 0, .external_lex_state = 2}, - [621] = {.lex_state = 0, .external_lex_state = 2}, + [617] = {.lex_state = 0, .external_lex_state = 2}, + [618] = {.lex_state = 0, .external_lex_state = 2}, + [619] = {.lex_state = 39, .external_lex_state = 2}, + [620] = {.lex_state = 17, .external_lex_state = 2}, + [621] = {.lex_state = 17, .external_lex_state = 2}, [622] = {.lex_state = 0, .external_lex_state = 2}, [623] = {.lex_state = 17, .external_lex_state = 2}, [624] = {.lex_state = 0, .external_lex_state = 2}, - [625] = {.lex_state = 17, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 41, .external_lex_state = 2}, - [630] = {.lex_state = 41, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, + [625] = {.lex_state = 0, .external_lex_state = 2}, + [626] = {.lex_state = 0, .external_lex_state = 2}, + [627] = {.lex_state = 39, .external_lex_state = 2}, + [628] = {.lex_state = 39, .external_lex_state = 2}, + [629] = {.lex_state = 39, .external_lex_state = 2}, + [630] = {.lex_state = 39, .external_lex_state = 2}, + [631] = {.lex_state = 39, .external_lex_state = 2}, + [632] = {.lex_state = 39, .external_lex_state = 2}, [633] = {.lex_state = 0, .external_lex_state = 2}, - [634] = {.lex_state = 0, .external_lex_state = 2}, - [635] = {.lex_state = 0, .external_lex_state = 2}, - [636] = {.lex_state = 0, .external_lex_state = 2}, + [634] = {.lex_state = 39, .external_lex_state = 2}, + [635] = {.lex_state = 17, .external_lex_state = 2}, + [636] = {.lex_state = 17, .external_lex_state = 2}, [637] = {.lex_state = 0, .external_lex_state = 2}, [638] = {.lex_state = 0, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, + [639] = {.lex_state = 0, .external_lex_state = 2}, [640] = {.lex_state = 0, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 41, .external_lex_state = 2}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 41, .external_lex_state = 2}, - [646] = {.lex_state = 17, .external_lex_state = 2}, - [647] = {.lex_state = 17, .external_lex_state = 2}, - [648] = {.lex_state = 0, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 0, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 17, .external_lex_state = 2}, + [641] = {.lex_state = 17, .external_lex_state = 2}, + [642] = {.lex_state = 17, .external_lex_state = 2}, + [643] = {.lex_state = 39, .external_lex_state = 2}, + [644] = {.lex_state = 39, .external_lex_state = 2}, + [645] = {.lex_state = 39, .external_lex_state = 2}, + [646] = {.lex_state = 39, .external_lex_state = 2}, + [647] = {.lex_state = 0, .external_lex_state = 2}, + [648] = {.lex_state = 17, .external_lex_state = 2}, + [649] = {.lex_state = 17, .external_lex_state = 2}, + [650] = {.lex_state = 39, .external_lex_state = 2}, + [651] = {.lex_state = 0, .external_lex_state = 2}, + [652] = {.lex_state = 0, .external_lex_state = 2}, [653] = {.lex_state = 17, .external_lex_state = 2}, [654] = {.lex_state = 0, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 17, .external_lex_state = 2}, - [658] = {.lex_state = 17, .external_lex_state = 2}, - [659] = {.lex_state = 17, .external_lex_state = 2}, + [655] = {.lex_state = 17, .external_lex_state = 2}, + [656] = {.lex_state = 17, .external_lex_state = 2}, + [657] = {.lex_state = 39, .external_lex_state = 2}, + [658] = {.lex_state = 0, .external_lex_state = 2}, + [659] = {.lex_state = 39, .external_lex_state = 2}, [660] = {.lex_state = 0, .external_lex_state = 2}, [661] = {.lex_state = 0, .external_lex_state = 2}, - [662] = {.lex_state = 0, .external_lex_state = 2}, - [663] = {.lex_state = 0, .external_lex_state = 2}, - [664] = {.lex_state = 17, .external_lex_state = 2}, - [665] = {.lex_state = 17, .external_lex_state = 2}, + [662] = {.lex_state = 17, .external_lex_state = 2}, + [663] = {.lex_state = 17, .external_lex_state = 2}, + [664] = {.lex_state = 0, .external_lex_state = 2}, + [665] = {.lex_state = 0, .external_lex_state = 2}, [666] = {.lex_state = 0, .external_lex_state = 2}, [667] = {.lex_state = 0, .external_lex_state = 2}, - [668] = {.lex_state = 17, .external_lex_state = 2}, - [669] = {.lex_state = 0, .external_lex_state = 2}, - [670] = {.lex_state = 0, .external_lex_state = 2}, + [668] = {.lex_state = 0, .external_lex_state = 2}, + [669] = {.lex_state = 17, .external_lex_state = 2}, + [670] = {.lex_state = 17, .external_lex_state = 2}, [671] = {.lex_state = 0, .external_lex_state = 2}, - [672] = {.lex_state = 17, .external_lex_state = 2}, - [673] = {.lex_state = 17, .external_lex_state = 2}, + [672] = {.lex_state = 0, .external_lex_state = 2}, + [673] = {.lex_state = 0, .external_lex_state = 2}, + [674] = {.lex_state = 0, .external_lex_state = 2}, + [675] = {.lex_state = 0, .external_lex_state = 2}, + [676] = {.lex_state = 17, .external_lex_state = 2}, + [677] = {.lex_state = 17, .external_lex_state = 2}, + [678] = {.lex_state = 0, .external_lex_state = 2}, }; enum { @@ -2228,9 +2221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_DOLLARCACHE] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), [aux_sym__untrimmed_argument_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_unquoted_argument_token1] = ACTIONS(1), @@ -2242,21 +2233,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(660), - [sym_if_command] = STATE(10), - [sym_if_condition] = STATE(162), - [sym_foreach_command] = STATE(122), - [sym_foreach_loop] = STATE(162), - [sym_while_command] = STATE(135), - [sym_while_loop] = STATE(162), - [sym_function_command] = STATE(136), - [sym_function_def] = STATE(162), - [sym_macro_command] = STATE(155), - [sym_macro_def] = STATE(162), - [sym_normal_command] = STATE(162), - [sym__command_invocation] = STATE(162), - [sym__untrimmed_command_invocation] = STATE(162), - [aux_sym_source_file_repeat1] = STATE(162), + [sym_source_file] = STATE(673), + [sym_if_command] = STATE(9), + [sym_if_condition] = STATE(165), + [sym_foreach_command] = STATE(18), + [sym_foreach_loop] = STATE(165), + [sym_while_command] = STATE(150), + [sym_while_loop] = STATE(165), + [sym_function_command] = STATE(147), + [sym_function_def] = STATE(165), + [sym_macro_command] = STATE(17), + [sym_macro_def] = STATE(165), + [sym_normal_command] = STATE(165), + [sym__command_invocation] = STATE(165), + [sym__untrimmed_command_invocation] = STATE(165), + [aux_sym_source_file_repeat1] = STATE(165), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym__untrimmed_argument_token1] = ACTIONS(7), [sym_if] = ACTIONS(9), @@ -2294,20 +2285,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(338), 1, + STATE(405), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(12), 11, + STATE(14), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2342,15 +2333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(282), 1, + STATE(277), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2378,6 +2369,8 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, + ACTIONS(21), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(23), 1, sym_elseif, ACTIONS(25), 1, @@ -2386,19 +2379,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(33), 1, sym_endif, - ACTIONS(35), 1, - aux_sym__untrimmed_argument_token1, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(262), 1, + STATE(269), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2432,21 +2423,21 @@ static const uint16_t ts_small_parse_table[] = { sym_else, ACTIONS(29), 1, sym_identifier, - ACTIONS(37), 1, + ACTIONS(35), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(39), 1, + ACTIONS(37), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(390), 1, + STATE(440), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2474,27 +2465,27 @@ static const uint16_t ts_small_parse_table[] = { 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(35), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(39), 1, + ACTIONS(37), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(381), 1, + STATE(425), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2528,21 +2519,21 @@ static const uint16_t ts_small_parse_table[] = { sym_else, ACTIONS(29), 1, sym_identifier, - ACTIONS(41), 1, + ACTIONS(39), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(43), 1, + ACTIONS(41), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(423), 1, + STATE(380), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2570,27 +2561,27 @@ static const uint16_t ts_small_parse_table[] = { 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(35), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(43), 1, + ACTIONS(41), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(409), 1, + STATE(372), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2622,28 +2613,28 @@ static const uint16_t ts_small_parse_table[] = { sym_elseif, ACTIONS(25), 1, sym_else, + ACTIONS(27), 1, + sym_endif, ACTIONS(29), 1, sym_identifier, - ACTIONS(35), 1, + ACTIONS(43), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(45), 1, - sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(311), 1, + STATE(383), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(14), 11, + STATE(2), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2672,21 +2663,21 @@ static const uint16_t ts_small_parse_table[] = { sym_else, ACTIONS(29), 1, sym_identifier, - ACTIONS(47), 1, + ACTIONS(45), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(49), 1, + ACTIONS(47), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(371), 1, + STATE(303), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2714,27 +2705,27 @@ static const uint16_t ts_small_parse_table[] = { 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(35), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(49), 1, + ACTIONS(47), 1, sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(461), 1, + STATE(312), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2762,27 +2753,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(35), 1, - aux_sym__untrimmed_argument_token1, + ACTIONS(49), 1, + sym_endif, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(344), 1, + STATE(345), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2816,26 +2807,26 @@ static const uint16_t ts_small_parse_table[] = { sym_else, ACTIONS(29), 1, sym_identifier, - ACTIONS(45), 1, + ACTIONS(49), 1, sym_endif, ACTIONS(51), 1, aux_sym__untrimmed_argument_token1, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, - STATE(303), 1, + STATE(339), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(9), 11, + STATE(12), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2870,13 +2861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(3), 1, sym_if_command, - STATE(126), 1, + STATE(20), 1, sym_foreach_command, - STATE(127), 1, + STATE(22), 1, sym_while_command, - STATE(132), 1, + STATE(24), 1, sym_function_command, - STATE(134), 1, + STATE(26), 1, sym_macro_command, ACTIONS(3), 2, sym_bracket_comment, @@ -2893,3469 +2884,25 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_if_condition_repeat1, - [855] = 15, + [855] = 13, ACTIONS(84), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, ACTIONS(86), 1, - anon_sym_DOLLARENV, + aux_sym__untrimmed_argument_token1, ACTIONS(88), 1, - anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(100), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(20), 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(232), 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, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(108), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(110), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(107), 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(232), 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, - [1145] = 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(112), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(114), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [1261] = 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(116), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(118), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [1319] = 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(120), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [1377] = 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(122), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(124), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [1435] = 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(126), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(128), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(47), 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(232), 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, - [1493] = 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(130), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(132), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [1551] = 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(134), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(136), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(100), 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(232), 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(92), 1, - 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - 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(112), 1, - anon_sym_RPAREN, - ACTIONS(142), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(37), 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(232), 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, - 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(144), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(146), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - 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(148), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(150), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(23), 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(232), 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, - 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(152), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(154), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(73), 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(232), 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, - [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(150), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - 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(156), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - [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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(162), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(164), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - 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(166), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(168), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(170), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(33), 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(232), 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(172), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, - anon_sym_RPAREN, - ACTIONS(174), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(176), 1, - anon_sym_RPAREN, - ACTIONS(178), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(180), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(182), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(184), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(110), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(190), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(194), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(196), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(198), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(200), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(49), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(16), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(17), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(100), 1, - anon_sym_RPAREN, - ACTIONS(220), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(81), 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(232), 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(222), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(224), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(226), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(228), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(230), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(230), 1, - anon_sym_RPAREN, - ACTIONS(232), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(228), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(234), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(234), 1, - anon_sym_RPAREN, - ACTIONS(236), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(96), 1, - anon_sym_RPAREN, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(238), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(21), 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(232), 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(240), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(240), 1, - anon_sym_RPAREN, - ACTIONS(242), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(244), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(246), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(248), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(248), 1, - anon_sym_RPAREN, - ACTIONS(250), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(252), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(254), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(105), 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(232), 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(256), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(258), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(232), 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(264), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(266), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(262), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(268), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(270), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(92), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(274), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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, - ACTIONS(276), 1, - aux_sym__untrimmed_argument_token1, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(97), 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(232), 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(278), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(280), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(282), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(284), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(286), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(288), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(288), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(290), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(292), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(294), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(296), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(296), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(300), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(302), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(304), 1, anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(298), 1, - anon_sym_RPAREN, - ACTIONS(306), 1, - aux_sym__untrimmed_argument_token1, STATE(238), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(239), 2, + STATE(237), 2, sym_quoted_argument, sym_unquoted_argument, STATE(99), 3, @@ -6376,29 +2923,5299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [5553] = 15, + [907] = 13, ACTIONS(84), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(86), 1, - anon_sym_DOLLARENV, + anon_sym_DOLLAR, ACTIONS(88), 1, - anon_sym_DOLLARCACHE, - ACTIONS(92), 1, anon_sym_DQUOTE, - ACTIONS(94), 1, + ACTIONS(90), 1, aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, + ACTIONS(94), 1, sym_bracket_argument, - ACTIONS(308), 1, + ACTIONS(96), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(310), 1, + ACTIONS(98), 1, anon_sym_RPAREN, STATE(238), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(239), 2, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(114), 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(232), 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, + [959] = 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(100), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(102), 1, + sym_endmacro, + ACTIONS(104), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(391), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(46), 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, + [1017] = 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(106), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(108), 1, + sym_endforeach, + ACTIONS(110), 1, + sym_identifier, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(385), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(37), 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, + [1075] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(112), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(114), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [1127] = 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(110), 1, + sym_identifier, + ACTIONS(116), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(118), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(276), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(31), 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, + [1185] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(120), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(122), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(59), 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(232), 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, + [1237] = 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(124), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(126), 1, + sym_endwhile, + ACTIONS(128), 1, + sym_identifier, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(275), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(32), 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, + [1295] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(130), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(132), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [1347] = 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(134), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(136), 1, + sym_endfunction, + ACTIONS(138), 1, + sym_identifier, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(274), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(33), 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, + [1405] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(140), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(142), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(65), 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(232), 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, + [1457] = 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(104), 1, + sym_identifier, + ACTIONS(144), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(146), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(271), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(34), 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, + [1515] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(148), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(150), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(68), 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(232), 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, + [1567] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(152), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(154), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(35), 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(232), 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, + [1619] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(156), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(158), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(71), 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(232), 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, + [1671] = 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(110), 1, + sym_identifier, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(162), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(313), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [1729] = 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(110), 1, + sym_identifier, + ACTIONS(118), 1, + sym_endforeach, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(268), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [1787] = 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(126), 1, + sym_endwhile, + ACTIONS(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(267), 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, + [1845] = 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(136), 1, + sym_endfunction, + ACTIONS(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(266), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [1903] = 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(104), 1, + sym_identifier, + ACTIONS(146), 1, + sym_endmacro, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(265), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [1961] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(170), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2013] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(170), 1, + anon_sym_RPAREN, + ACTIONS(172), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(42), 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(232), 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, + [2065] = 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(108), 1, + sym_endforeach, + ACTIONS(110), 1, + sym_identifier, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(406), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [2123] = 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(110), 1, + sym_identifier, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(174), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(371), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [2181] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(176), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(178), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 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(232), 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, + [2233] = 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(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(180), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(407), 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, + [2291] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(182), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(184), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(49), 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(232), 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, + [2343] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(186), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2395] = 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(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(188), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(411), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [2453] = 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(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(190), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(370), 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, + [2511] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(192), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2563] = 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(102), 1, + sym_endmacro, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(418), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [2621] = 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(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(194), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(369), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [2679] = 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(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(196), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(314), 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, + [2737] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(198), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2789] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(198), 1, + anon_sym_RPAREN, + ACTIONS(200), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2841] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(202), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2893] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(204), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [2945] = 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(110), 1, + sym_identifier, + ACTIONS(206), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(208), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(439), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(64), 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, + [3003] = 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(128), 1, + sym_identifier, + ACTIONS(210), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(212), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(436), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(67), 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, + [3061] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(214), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3113] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(214), 1, + anon_sym_RPAREN, + ACTIONS(216), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(100), 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(232), 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, + [3165] = 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(138), 1, + sym_identifier, + ACTIONS(218), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(220), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(435), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(70), 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, + [3223] = 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(104), 1, + sym_identifier, + ACTIONS(222), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(224), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(434), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(92), 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, + [3281] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(226), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3333] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(226), 1, + anon_sym_RPAREN, + ACTIONS(228), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3385] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(230), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(232), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(95), 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(232), 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, + [3437] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(234), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3489] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(234), 1, + anon_sym_RPAREN, + ACTIONS(236), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3541] = 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(110), 1, + sym_identifier, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(208), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(395), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [3599] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(238), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3651] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(238), 1, + anon_sym_RPAREN, + ACTIONS(240), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3703] = 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(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(212), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(421), 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, + [3761] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(242), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(242), 1, + anon_sym_RPAREN, + ACTIONS(244), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3865] = 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(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(220), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(420), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [3923] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(246), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [3975] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(246), 1, + anon_sym_RPAREN, + ACTIONS(248), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4027] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(250), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(252), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(112), 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(232), 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, + [4079] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(254), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4131] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(256), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4183] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(258), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(260), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(74), 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(232), 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, + [4235] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(260), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4287] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(262), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(264), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(75), 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(232), 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, + [4339] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(264), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4391] = 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(104), 1, + sym_identifier, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(266), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(338), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [4449] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(268), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4501] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(270), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4553] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(272), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(274), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4605] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(276), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(278), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4657] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(268), 1, + anon_sym_RPAREN, + ACTIONS(280), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(117), 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(232), 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, + [4709] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(282), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(284), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(126), 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(232), 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, + [4761] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(286), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(288), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4813] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(288), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [4865] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(290), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(292), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(129), 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(232), 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, + [4917] = 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(104), 1, + sym_identifier, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(294), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(349), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [4975] = 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(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(296), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(348), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [5033] = 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(104), 1, + sym_identifier, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(224), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(419), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [5091] = 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(128), 1, + sym_identifier, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(298), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(347), 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, + [5149] = 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(110), 1, + sym_identifier, + ACTIONS(160), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(300), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(346), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [5207] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(98), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5259] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(302), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(304), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(81), 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(232), 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, + [5311] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(306), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(308), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(121), 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(232), 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, + [5363] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(310), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(312), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(123), 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(232), 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, + [5415] = 13, + ACTIONS(317), 1, + anon_sym_DOLLAR, + ACTIONS(320), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(326), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(329), 1, + anon_sym_RPAREN, + ACTIONS(331), 1, + sym_bracket_argument, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(314), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5467] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(334), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5519] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(336), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(338), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5571] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(340), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5623] = 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(104), 1, + sym_identifier, + ACTIONS(294), 1, + sym_endmacro, + ACTIONS(342), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(343), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(90), 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, + [5681] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(344), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5733] = 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(138), 1, + sym_identifier, + ACTIONS(296), 1, + sym_endfunction, + ACTIONS(346), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(342), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(91), 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, + [5791] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(348), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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] = 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(128), 1, + sym_identifier, + ACTIONS(298), 1, + sym_endwhile, + ACTIONS(350), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(341), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(93), 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, + [5901] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(352), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [5953] = 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(110), 1, + sym_identifier, + ACTIONS(300), 1, + sym_endforeach, + ACTIONS(354), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(340), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(94), 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, + [6011] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(356), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6063] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(358), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(360), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(133), 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(232), 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, + [6115] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(362), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6167] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(362), 1, + anon_sym_RPAREN, + ACTIONS(364), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(144), 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(232), 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, + [6219] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(366), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6271] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(368), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(370), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(139), 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(232), 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, + [6323] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(372), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6375] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(374), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6427] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(376), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6479] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(378), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(116), 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(232), 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, + [6531] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(380), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6583] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(382), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6635] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(384), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(386), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(118), 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(232), 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, + [6687] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(388), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6739] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(386), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6791] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(382), 1, + anon_sym_RPAREN, + ACTIONS(390), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(159), 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(232), 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, + [6843] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(392), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6895] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(155), 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(232), 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, + [6947] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(396), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [6999] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(398), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7051] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(398), 1, + anon_sym_RPAREN, + ACTIONS(400), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(157), 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(232), 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, + [7103] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(402), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(404), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(120), 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(232), 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, + [7155] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(406), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(135), 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(232), 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, + [7207] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(408), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7259] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(408), 1, + anon_sym_RPAREN, + ACTIONS(410), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(136), 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(232), 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, + [7311] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(412), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7363] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(414), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7415] = 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(110), 1, + sym_identifier, + ACTIONS(174), 1, + sym_endforeach, + ACTIONS(416), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(379), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(38), 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, + [7473] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(418), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(420), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(124), 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(232), 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, + [7525] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(422), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7577] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(92), 1, + anon_sym_RPAREN, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(424), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(128), 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(232), 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, + [7629] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(422), 1, + anon_sym_RPAREN, + ACTIONS(426), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(158), 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(232), 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, + [7681] = 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(104), 1, + sym_identifier, + ACTIONS(168), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(428), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(103), 1, + sym_macro_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(316), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 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, + [7739] = 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(128), 1, + sym_identifier, + ACTIONS(190), 1, + sym_endwhile, + ACTIONS(430), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(137), 1, + sym_foreach_command, + STATE(143), 1, + sym_while_command, + STATE(146), 1, + sym_function_command, + STATE(149), 1, + sym_macro_command, + STATE(378), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(44), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7797] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(432), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [7849] = 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(138), 1, + sym_identifier, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(434), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(315), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7907] = 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(138), 1, + sym_identifier, + ACTIONS(194), 1, + sym_endfunction, + ACTIONS(436), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(377), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(47), 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, + [7965] = 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(138), 1, + sym_identifier, + ACTIONS(188), 1, + sym_endfunction, + ACTIONS(438), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, + STATE(390), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(43), 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, + [8023] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(192), 1, + anon_sym_RPAREN, + ACTIONS(440), 1, + aux_sym__untrimmed_argument_token1, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 2, sym_quoted_argument, sym_unquoted_argument, STATE(51), 3, @@ -6419,652 +8236,7 @@ static const uint16_t ts_small_parse_table[] = { 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(182), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(314), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(210), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(319), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(322), 1, - anon_sym_DOLLARENV, - ACTIONS(325), 1, - anon_sym_DOLLARCACHE, - ACTIONS(328), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(331), 1, - anon_sym_DQUOTE, - ACTIONS(334), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(337), 1, - anon_sym_RPAREN, - ACTIONS(339), 1, - sym_bracket_argument, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(316), 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(342), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(344), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(346), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(348), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(350), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(354), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(92), 1, - anon_sym_DQUOTE, - ACTIONS(94), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(98), 1, - sym_bracket_argument, - ACTIONS(356), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(358), 1, - anon_sym_RPAREN, - STATE(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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(238), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(239), 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(232), 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, + [8075] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -7075,70 +8247,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(364), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(366), 1, - sym_endfunction, - ACTIONS(368), 1, + ACTIONS(104), 1, sym_identifier, + ACTIONS(266), 1, + sym_endmacro, + ACTIONS(442), 1, + aux_sym__untrimmed_argument_token1, STATE(13), 1, sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, + STATE(103), 1, sym_macro_command, - STATE(456), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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_endmacro, - ACTIONS(374), 1, - sym_identifier, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, + STATE(105), 1, sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(401), 1, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(376), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(175), 9, + STATE(80), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7148,7 +8278,7 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [6597] = 16, + [8133] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -7159,70 +8289,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(376), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(378), 1, - sym_endforeach, - ACTIONS(380), 1, + ACTIONS(128), 1, sym_identifier, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(408), 1, - sym_endforeach_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, - [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(382), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(384), 1, + ACTIONS(180), 1, sym_endwhile, - ACTIONS(386), 1, - sym_identifier, + ACTIONS(444), 1, + aux_sym__untrimmed_argument_token1, STATE(7), 1, sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, + STATE(137), 1, sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, + STATE(143), 1, + sym_while_command, + STATE(146), 1, sym_function_command, - STATE(407), 1, + STATE(149), 1, + sym_macro_command, + STATE(388), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(171), 9, + STATE(40), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7232,49 +8320,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_endwhile, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(388), 1, + [8191] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(446), 1, aux_sym__untrimmed_argument_token1, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(420), 1, - sym_endwhile_command, + ACTIONS(448), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, 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, - [6771] = 16, + STATE(237), 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(232), 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, + [8243] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -7285,447 +8370,27 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(378), 1, - sym_endforeach, - ACTIONS(380), 1, + ACTIONS(104), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(428), 1, + sym_endmacro, + ACTIONS(450), 1, aux_sym__untrimmed_argument_token1, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(421), 1, - sym_endforeach_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, - [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(364), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(368), 1, - sym_identifier, - ACTIONS(392), 1, - sym_endfunction, STATE(13), 1, sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, + STATE(103), 1, sym_macro_command, - STATE(402), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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_endmacro, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(394), 1, - aux_sym__untrimmed_argument_token1, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, + STATE(105), 1, sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(417), 1, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, + STATE(307), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(113), 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(386), 1, - sym_identifier, - ACTIONS(396), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(398), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(340), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(157), 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(382), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(400), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(313), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(171), 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(380), 1, - sym_identifier, - ACTIONS(402), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(404), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(372), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(154), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [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(406), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(408), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(304), 1, - sym_endforeach_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, - [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(410), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(412), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(400), 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, - [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(386), 1, - sym_identifier, - ACTIONS(400), 1, - sym_endwhile, - ACTIONS(414), 1, - aux_sym__untrimmed_argument_token1, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(305), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(121), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [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(416), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(418), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(280), 1, - sym_endforeach_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, - [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(386), 1, - sym_identifier, - ACTIONS(420), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(422), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(279), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, STATE(142), 9, sym_if_condition, sym_foreach_loop, @@ -7736,7 +8401,7 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7409] = 16, + [8301] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -7747,28 +8412,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(368), 1, + ACTIONS(138), 1, sym_identifier, - ACTIONS(424), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(426), 1, + ACTIONS(434), 1, sym_endfunction, - STATE(13), 1, + ACTIONS(452), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, + STATE(152), 1, sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, STATE(306), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(131), 9, + STATE(145), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7778,7 +8443,7 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7467] = 16, + [8359] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -7789,868 +8454,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(374), 1, + ACTIONS(128), 1, sym_identifier, - ACTIONS(428), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(430), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(307), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(146), 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(376), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(408), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(312), 1, - sym_endforeach_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(364), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(368), 1, - sym_identifier, - ACTIONS(426), 1, - sym_endfunction, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(314), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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(368), 1, - sym_identifier, - ACTIONS(432), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(434), 1, - sym_endfunction, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(278), 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, - [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(380), 1, - sym_identifier, - ACTIONS(436), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(438), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(391), 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, - [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(440), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(442), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(277), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(147), 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(386), 1, - sym_identifier, - ACTIONS(444), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(446), 1, + ACTIONS(196), 1, sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(374), 1, - sym_endwhile_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, - [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(366), 1, - sym_endfunction, - ACTIONS(368), 1, - sym_identifier, - ACTIONS(448), 1, - aux_sym__untrimmed_argument_token1, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(375), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(112), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [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(370), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(412), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(453), 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(364), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(368), 1, - sym_identifier, - ACTIONS(450), 1, - sym_endfunction, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(454), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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(382), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(452), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(457), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(171), 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(376), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(438), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(459), 1, - sym_endforeach_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, - [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(418), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(261), 1, - sym_endforeach_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, - [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(382), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(422), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(259), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(171), 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(364), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(368), 1, - sym_identifier, - ACTIONS(434), 1, - sym_endfunction, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(256), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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(368), 1, - sym_identifier, - ACTIONS(450), 1, - sym_endfunction, ACTIONS(454), 1, aux_sym__untrimmed_argument_token1, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(399), 1, - sym_endfunction_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, - [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(392), 1, - sym_endfunction, - ACTIONS(456), 1, - aux_sym__untrimmed_argument_token1, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(418), 1, - sym_endfunction_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, - [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(370), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(430), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(315), 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, - [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(370), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(442), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(255), 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, - [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(370), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(458), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(455), 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, - [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(386), 1, - sym_identifier, - ACTIONS(452), 1, - sym_endwhile, - ACTIONS(460), 1, - aux_sym__untrimmed_argument_token1, STATE(7), 1, sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, + STATE(137), 1, sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, + STATE(143), 1, + sym_while_command, + STATE(146), 1, sym_function_command, - STATE(398), 1, + STATE(149), 1, + sym_macro_command, + STATE(305), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(139), 9, + STATE(48), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8660,7 +8485,46 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [8685] = 16, + [8417] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(456), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [8469] = 16, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -8671,28 +8535,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(17), 1, sym_macro, - ACTIONS(380), 1, + ACTIONS(110), 1, sym_identifier, - ACTIONS(462), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(464), 1, + ACTIONS(162), 1, sym_endforeach, + ACTIONS(458), 1, + aux_sym__untrimmed_argument_token1, STATE(5), 1, sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, + STATE(53), 1, sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, + STATE(54), 1, sym_while_command, - STATE(339), 1, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, + STATE(304), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(156), 9, + STATE(30), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8702,81 +8566,154 @@ static const uint16_t ts_small_parse_table[] = { 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(382), 1, + [8527] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(446), 1, - sym_endwhile, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - STATE(458), 1, - sym_endwhile_command, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(460), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(171), 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(368), 1, - sym_identifier, + STATE(237), 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(232), 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, + [8579] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(462), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [8631] = 13, + ACTIONS(84), 1, + anon_sym_DOLLAR, + ACTIONS(86), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(88), 1, + anon_sym_DQUOTE, + ACTIONS(90), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(94), 1, + sym_bracket_argument, + ACTIONS(464), 1, + anon_sym_RPAREN, + STATE(238), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(237), 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(232), 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, + [8683] = 15, ACTIONS(466), 1, aux_sym__untrimmed_argument_token1, - ACTIONS(468), 1, - sym_endfunction, + ACTIONS(469), 1, + sym_if, + ACTIONS(472), 1, + sym_foreach, + ACTIONS(475), 1, + sym_while, + ACTIONS(478), 1, + sym_function, + ACTIONS(481), 1, + sym_macro, + ACTIONS(484), 1, + sym_endmacro, + ACTIONS(486), 1, + sym_identifier, STATE(13), 1, sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, + STATE(103), 1, sym_macro_command, - STATE(341), 1, - sym_endfunction_command, + STATE(105), 1, + sym_function_command, + STATE(107), 1, + sym_while_command, + STATE(109), 1, + sym_foreach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(158), 9, + STATE(160), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8786,207 +8723,37 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [8859] = 16, - ACTIONS(9), 1, + [8738] = 15, + ACTIONS(469), 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(470), 1, - aux_sym__untrimmed_argument_token1, ACTIONS(472), 1, - sym_endmacro, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(342), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(159), 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, + ACTIONS(475), 1, sym_while, - ACTIONS(15), 1, + ACTIONS(478), 1, sym_function, - ACTIONS(17), 1, + ACTIONS(481), 1, sym_macro, - ACTIONS(376), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(404), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(460), 1, - sym_endforeach_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, - [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(374), 1, - sym_identifier, - ACTIONS(458), 1, - sym_endmacro, - ACTIONS(474), 1, - aux_sym__untrimmed_argument_token1, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_macro_command, - STATE(384), 1, - sym_endmacro_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, - [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(376), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(464), 1, - sym_endforeach, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_command, - STATE(345), 1, - sym_endforeach_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, - [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(382), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(386), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(484), 1, sym_endwhile, + ACTIONS(489), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(492), 1, + sym_identifier, STATE(7), 1, sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, + STATE(137), 1, sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, + STATE(143), 1, + sym_while_command, + STATE(146), 1, sym_function_command, - STATE(346), 1, - sym_endwhile_command, + STATE(149), 1, + sym_macro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(171), 9, + STATE(161), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8996,81 +8763,37 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [9149] = 16, - ACTIONS(9), 1, + [8793] = 15, + ACTIONS(469), 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(368), 1, - sym_identifier, - ACTIONS(468), 1, - sym_endfunction, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - STATE(347), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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(370), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(374), 1, - sym_identifier, ACTIONS(472), 1, - sym_endmacro, - STATE(2), 1, + sym_foreach, + ACTIONS(475), 1, + sym_while, + ACTIONS(478), 1, + sym_function, + ACTIONS(481), 1, + sym_macro, + ACTIONS(495), 1, + ts_builtin_sym_end, + ACTIONS(497), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(500), 1, + sym_identifier, + STATE(9), 1, sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, + STATE(17), 1, sym_macro_command, - STATE(348), 1, - sym_endmacro_command, + STATE(18), 1, + sym_foreach_command, + STATE(147), 1, + sym_function_command, + STATE(150), 1, + sym_while_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(175), 9, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -9080,85 +8803,87 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [9265] = 14, + [8848] = 15, + ACTIONS(469), 1, + sym_if, + ACTIONS(472), 1, + sym_foreach, + ACTIONS(475), 1, + sym_while, ACTIONS(478), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(480), 1, - anon_sym_DOLLARENV, - ACTIONS(482), 1, - anon_sym_DOLLARCACHE, + sym_function, + ACTIONS(481), 1, + sym_macro, 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(620), 1, - sym_argument, + sym_endfunction, + ACTIONS(503), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(506), 1, + sym_identifier, + STATE(10), 1, + sym_if_command, + STATE(152), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(156), 1, + sym_foreach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9318] = 14, + STATE(163), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8903] = 15, + ACTIONS(469), 1, + sym_if, + ACTIONS(472), 1, + sym_foreach, + ACTIONS(475), 1, + sym_while, ACTIONS(478), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(480), 1, - anon_sym_DOLLARENV, - ACTIONS(482), 1, - anon_sym_DOLLARCACHE, + sym_function, + ACTIONS(481), 1, + sym_macro, ACTIONS(484), 1, - anon_sym_DQUOTE, - ACTIONS(486), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(490), 1, - sym_bracket_argument, - ACTIONS(492), 1, - anon_sym_RPAREN, - STATE(272), 1, - sym__escape_encoded, - STATE(663), 1, - sym_argument, + sym_endforeach, + ACTIONS(509), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(512), 1, + sym_identifier, + STATE(5), 1, + sym_if_command, + STATE(53), 1, + sym_foreach_command, + STATE(54), 1, + sym_while_command, + STATE(57), 1, + sym_function_command, + STATE(58), 1, + sym_macro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9371] = 15, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8958] = 15, ACTIONS(9), 1, sym_if, ACTIONS(11), 1, @@ -9171,103 +8896,24 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(19), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(515), 1, ts_builtin_sym_end, - ACTIONS(496), 1, - aux_sym__untrimmed_argument_token1, - STATE(10), 1, - sym_if_command, - STATE(122), 1, - sym_foreach_command, - STATE(135), 1, - sym_while_command, - STATE(136), 1, - sym_function_command, - STATE(155), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(164), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [9426] = 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(498), 1, - anon_sym_RPAREN, - STATE(272), 1, - sym__escape_encoded, - STATE(616), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9479] = 15, - ACTIONS(500), 1, - ts_builtin_sym_end, - ACTIONS(502), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(505), 1, - sym_if, - ACTIONS(508), 1, - sym_foreach, - ACTIONS(511), 1, - sym_while, - ACTIONS(514), 1, - sym_function, ACTIONS(517), 1, - sym_macro, - ACTIONS(520), 1, - sym_identifier, - STATE(10), 1, + aux_sym__untrimmed_argument_token1, + STATE(9), 1, sym_if_command, - STATE(122), 1, - sym_foreach_command, - STATE(135), 1, - sym_while_command, - STATE(136), 1, - sym_function_command, - STATE(155), 1, + STATE(17), 1, sym_macro_command, + STATE(18), 1, + sym_foreach_command, + STATE(147), 1, + sym_function_command, + STATE(150), 1, + sym_while_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(164), 9, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -9277,1487 +8923,1288 @@ static const uint16_t ts_small_parse_table[] = { sym__command_invocation, sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [9534] = 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, + [9013] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, ACTIONS(523), 1, - anon_sym_RPAREN, - STATE(272), 1, - sym__escape_encoded, - STATE(654), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9587] = 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(525), 1, - anon_sym_RPAREN, - STATE(272), 1, - sym__escape_encoded, - STATE(577), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9640] = 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(593), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9693] = 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(666), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9746] = 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(584), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9799] = 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(533), 1, - anon_sym_RPAREN, - STATE(272), 1, - sym__escape_encoded, - STATE(606), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9852] = 15, - ACTIONS(505), 1, - sym_if, - ACTIONS(508), 1, - sym_foreach, - ACTIONS(511), 1, - sym_while, - ACTIONS(514), 1, - sym_function, - ACTIONS(517), 1, - sym_macro, - ACTIONS(535), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(538), 1, - sym_endwhile, - ACTIONS(540), 1, - sym_identifier, - STATE(7), 1, - sym_if_command, - STATE(116), 1, - sym_while_command, - STATE(117), 1, - sym_foreach_command, - STATE(119), 1, - sym_macro_command, - STATE(145), 1, - sym_function_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(171), 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, - [9907] = 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(662), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9960] = 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(603), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10013] = 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(590), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(635), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(220), 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(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10066] = 15, - ACTIONS(505), 1, - sym_if, - ACTIONS(508), 1, - sym_foreach, - ACTIONS(511), 1, - sym_while, - ACTIONS(514), 1, - sym_function, - ACTIONS(517), 1, - sym_macro, - ACTIONS(538), 1, - sym_endmacro, - ACTIONS(549), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(552), 1, - sym_identifier, - STATE(2), 1, - sym_if_command, - STATE(120), 1, - sym_while_command, - STATE(150), 1, - sym_foreach_command, - STATE(152), 1, - sym_function_command, - STATE(153), 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, - [10121] = 15, - ACTIONS(505), 1, - sym_if, - ACTIONS(508), 1, - sym_foreach, - ACTIONS(511), 1, - sym_while, - ACTIONS(514), 1, - sym_function, - ACTIONS(517), 1, - sym_macro, - ACTIONS(538), 1, - sym_endfunction, - ACTIONS(555), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(558), 1, - sym_identifier, - STATE(13), 1, - sym_if_command, - STATE(123), 1, - sym_foreach_command, - STATE(125), 1, - sym_while_command, - STATE(128), 1, - sym_function_command, - STATE(129), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(176), 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, - [10176] = 15, - ACTIONS(505), 1, - sym_if, - ACTIONS(508), 1, - sym_foreach, - ACTIONS(511), 1, - sym_while, - ACTIONS(514), 1, - sym_function, - ACTIONS(517), 1, - sym_macro, - ACTIONS(538), 1, - sym_endforeach, - ACTIONS(561), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(564), 1, - sym_identifier, - STATE(5), 1, - sym_if_command, - STATE(124), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - STATE(144), 1, - sym_function_command, - STATE(149), 1, - sym_while_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(299), 1, - sym__escape_encoded, - STATE(597), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(598), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(645), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(580), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(581), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(629), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(639), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(582), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(583), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(641), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(595), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(649), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(596), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(644), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(628), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(642), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(609), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(651), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(610), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(611), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(655), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(612), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(656), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(643), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, - sym__escape_encoded, - STATE(627), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(632), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(219), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 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(299), 1, + STATE(431), 1, sym__escape_encoded, STATE(626), 1, sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(632), 2, + STATE(666), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(219), 3, + STATE(231), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(298), 3, + STATE(428), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(567), 5, + ACTIONS(519), 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, + [9060] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(531), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(622), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9107] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(533), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(633), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9154] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(535), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(651), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9201] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(537), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(678), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9248] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(539), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(615), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9295] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(541), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(660), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9342] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(543), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(603), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9389] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(545), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(600), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9436] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(547), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(624), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9483] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(549), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(587), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9530] = 12, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(525), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(529), 1, + sym_bracket_argument, + ACTIONS(551), 1, + anon_sym_RPAREN, + STATE(431), 1, + sym__escape_encoded, + STATE(625), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(666), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(231), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9577] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(589), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9621] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(590), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9665] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(659), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9709] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(645), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9753] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(644), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9797] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(634), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9841] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(611), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9885] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(610), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9929] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(609), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9973] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(608), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10017] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(592), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10061] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(591), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10105] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(643), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10149] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(646), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10193] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(657), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10237] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(630), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10281] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(631), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10325] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(650), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10369] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(584), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10413] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(583), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10457] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(629), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10501] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(581), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10545] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(593), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10589] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(627), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10633] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(632), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10677] = 11, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(559), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(561), 1, + sym_bracket_argument, + STATE(309), 1, + sym__escape_encoded, + STATE(628), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(619), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(225), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10721] = 8, + ACTIONS(566), 1, + anon_sym_DOLLAR, + ACTIONS(571), 1, aux_sym_unquoted_argument_token1, STATE(238), 1, sym__escape_encoded, @@ -10772,25 +10219,21 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(593), 4, + ACTIONS(569), 4, sym_bracket_argument, aux_sym__untrimmed_argument_token1, anon_sym_DQUOTE, anon_sym_RPAREN, - ACTIONS(581), 5, + ACTIONS(563), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [11574] = 10, + [10758] = 8, ACTIONS(84), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(86), 1, - anon_sym_DOLLARENV, - ACTIONS(88), 1, - anon_sym_DOLLARCACHE, - ACTIONS(600), 1, + anon_sym_DOLLAR, + ACTIONS(576), 1, aux_sym_unquoted_argument_token1, STATE(238), 1, sym__escape_encoded, @@ -10805,7 +10248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(598), 4, + ACTIONS(574), 4, sym_bracket_argument, aux_sym__untrimmed_argument_token1, anon_sym_DQUOTE, @@ -10816,945 +10259,1049 @@ static const uint16_t ts_small_parse_table[] = { 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, + [10795] = 9, + ACTIONS(580), 1, + anon_sym_DOLLAR, + ACTIONS(582), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(584), 1, aux_sym_quoted_element_token1, - STATE(245), 1, + STATE(453), 1, sym__escape_encoded, - STATE(607), 1, + STATE(614), 1, sym_quoted_element, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(212), 3, + STATE(223), 3, sym_escape_sequence, sym_variable_ref, aux_sym_quoted_element_repeat1, - STATE(246), 3, + STATE(452), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(602), 5, + ACTIONS(578), 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, + [10832] = 9, + ACTIONS(580), 1, + anon_sym_DOLLAR, + ACTIONS(584), 1, aux_sym_quoted_element_token1, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_DQUOTE, - STATE(245), 1, + STATE(453), 1, sym__escape_encoded, - STATE(667), 1, + STATE(652), 1, sym_quoted_element, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(212), 3, + STATE(223), 3, sym_escape_sequence, sym_variable_ref, aux_sym_quoted_element_repeat1, - STATE(246), 3, + STATE(452), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(602), 5, + ACTIONS(578), 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, + [10869] = 9, + ACTIONS(580), 1, + anon_sym_DOLLAR, + ACTIONS(584), 1, aux_sym_quoted_element_token1, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - STATE(245), 1, + STATE(453), 1, sym__escape_encoded, - STATE(622), 1, + STATE(612), 1, sym_quoted_element, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(212), 3, + STATE(223), 3, sym_escape_sequence, sym_variable_ref, aux_sym_quoted_element_repeat1, - STATE(246), 3, + STATE(452), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(602), 5, + ACTIONS(578), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [11746] = 10, - ACTIONS(621), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(624), 1, - anon_sym_DOLLARENV, - ACTIONS(627), 1, - anon_sym_DOLLARCACHE, - ACTIONS(630), 1, - anon_sym_DQUOTE, - ACTIONS(632), 1, - aux_sym_quoted_element_token1, - STATE(245), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(209), 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(618), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [11786] = 10, - ACTIONS(637), 1, + [10906] = 8, + ACTIONS(592), 1, aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(594), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [11826] = 10, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - ACTIONS(645), 1, - aux_sym_variable_token1, - ACTIONS(647), 1, - anon_sym_RBRACE, - STATE(275), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(218), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 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(649), 1, - anon_sym_DQUOTE, - ACTIONS(651), 1, - aux_sym_quoted_element_token1, - STATE(245), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(209), 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(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(608), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [11946] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, sym__escape_encoded, STATE(623), 1, sym_variable, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(211), 3, + STATE(230), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(268), 3, + STATE(374), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(635), 5, + ACTIONS(590), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [11986] = 10, - ACTIONS(637), 1, + [10940] = 8, + ACTIONS(592), 1, aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, sym__escape_encoded, - STATE(579), 1, + STATE(653), 1, sym_variable, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(211), 3, + STATE(230), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(268), 3, + STATE(374), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(635), 5, + ACTIONS(590), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12026] = 10, - ACTIONS(637), 1, + [10974] = 8, + ACTIONS(592), 1, aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, sym__escape_encoded, - STATE(668), 1, + STATE(642), 1, sym_variable, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(211), 3, + STATE(230), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(268), 3, + STATE(374), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(635), 5, + ACTIONS(590), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12066] = 10, - ACTIONS(637), 1, + [11008] = 8, + ACTIONS(592), 1, aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(676), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11042] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(677), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11076] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, sym__escape_encoded, STATE(585), 1, sym_variable, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(211), 3, + STATE(230), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(268), 3, + STATE(374), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(635), 5, + ACTIONS(590), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12106] = 10, - ACTIONS(656), 1, + [11110] = 8, + ACTIONS(592), 1, aux_sym_variable_token1, - ACTIONS(659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(662), 1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(582), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11144] = 8, + ACTIONS(599), 1, + aux_sym_variable_token1, + ACTIONS(602), 1, + anon_sym_DOLLAR, + ACTIONS(605), 1, anon_sym_RBRACE, - ACTIONS(664), 1, - anon_sym_DOLLARENV, - ACTIONS(667), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, + STATE(375), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(218), 3, + STATE(216), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(268), 3, + STATE(374), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(653), 5, + ACTIONS(596), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12146] = 10, + [11178] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(586), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11212] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(588), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11246] = 8, + ACTIONS(610), 1, + anon_sym_DOLLAR, + ACTIONS(613), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(616), 1, + aux_sym_else_command_token1, + STATE(309), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(607), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11280] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(641), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11314] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(613), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11348] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(621), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11382] = 8, + ACTIONS(580), 1, + anon_sym_DOLLAR, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + aux_sym_quoted_element_token1, + STATE(453), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(226), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(452), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(578), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11416] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(620), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11450] = 8, + ACTIONS(555), 1, + anon_sym_DOLLAR, + ACTIONS(622), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(624), 1, + aux_sym_else_command_token1, + STATE(309), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(310), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(553), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11484] = 8, + ACTIONS(629), 1, + anon_sym_DOLLAR, + ACTIONS(632), 1, + anon_sym_DQUOTE, + ACTIONS(634), 1, + aux_sym_quoted_element_token1, + STATE(453), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(226), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(452), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(626), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11518] = 8, ACTIONS(569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(571), 1, - anon_sym_DOLLARENV, - ACTIONS(573), 1, - anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + ACTIONS(640), 1, + anon_sym_DOLLAR, + ACTIONS(643), 1, + aux_sym_unquoted_argument_token1, + STATE(431), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(227), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(637), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11552] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(636), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11586] = 8, + ACTIONS(592), 1, + aux_sym_variable_token1, + ACTIONS(594), 1, + anon_sym_DOLLAR, + STATE(375), 1, + sym__escape_encoded, + STATE(635), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(230), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11620] = 8, + ACTIONS(594), 1, + anon_sym_DOLLAR, + ACTIONS(646), 1, + aux_sym_variable_token1, + ACTIONS(648), 1, + anon_sym_RBRACE, + STATE(375), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(216), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(374), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(590), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11654] = 8, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(574), 1, + anon_sym_RPAREN, + ACTIONS(650), 1, + aux_sym_unquoted_argument_token1, + STATE(431), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(227), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(428), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(519), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11688] = 3, + ACTIONS(654), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(652), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11708] = 3, + ACTIONS(658), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(656), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11728] = 3, + ACTIONS(662), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(660), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11748] = 3, + ACTIONS(666), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(664), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11768] = 3, ACTIONS(670), 1, aux_sym_unquoted_argument_token1, - ACTIONS(672), 1, - aux_sym_else_command_token1, - STATE(299), 1, - sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(227), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(567), 5, + ACTIONS(668), 10, + sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12186] = 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_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, anon_sym_RPAREN, + [11788] = 3, ACTIONS(674), 1, aux_sym_unquoted_argument_token1, - STATE(272), 1, - sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(225), 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(476), 5, + ACTIONS(672), 10, + sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [12226] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(591), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12266] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(592), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12306] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(578), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12346] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(625), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12386] = 10, - ACTIONS(593), 1, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, anon_sym_RPAREN, - ACTIONS(679), 1, - anon_sym_DOLLAR_LBRACE, + [11808] = 3, + ACTIONS(678), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(676), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11828] = 3, ACTIONS(682), 1, - anon_sym_DOLLARENV, - ACTIONS(685), 1, - anon_sym_DOLLARCACHE, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(680), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [11848] = 3, + ACTIONS(684), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(686), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11867] = 3, ACTIONS(688), 1, - aux_sym_unquoted_argument_token1, - STATE(272), 1, - sym__escape_encoded, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(225), 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(676), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12426] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(605), 1, - sym_variable, + ACTIONS(690), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11886] = 3, + ACTIONS(692), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12466] = 10, - ACTIONS(694), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(697), 1, - anon_sym_DOLLARENV, + ACTIONS(694), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11905] = 3, + ACTIONS(696), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(698), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11924] = 3, ACTIONS(700), 1, - anon_sym_DOLLARCACHE, - ACTIONS(703), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(706), 1, - aux_sym_else_command_token1, - STATE(299), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(227), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(298), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(691), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12506] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(657), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12546] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(618), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12586] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(604), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12626] = 10, - ACTIONS(637), 1, - aux_sym_variable_token1, - ACTIONS(639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(641), 1, - anon_sym_DOLLARENV, - ACTIONS(643), 1, - anon_sym_DOLLARCACHE, - STATE(275), 1, - sym__escape_encoded, - STATE(617), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(211), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(268), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(635), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [12666] = 3, - ACTIONS(710), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(708), 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, - [12688] = 3, - ACTIONS(714), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(712), 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, + ACTIONS(702), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11943] = 3, + ACTIONS(704), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12710] = 3, - ACTIONS(718), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(716), 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, + ACTIONS(706), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11962] = 3, + ACTIONS(708), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12732] = 3, - ACTIONS(722), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(720), 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, + ACTIONS(710), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [11981] = 3, + ACTIONS(712), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12754] = 3, - ACTIONS(726), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(724), 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, + ACTIONS(714), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12000] = 3, + ACTIONS(716), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12776] = 3, - ACTIONS(730), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(728), 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, + ACTIONS(718), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12019] = 3, + ACTIONS(720), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12798] = 3, - ACTIONS(734), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(732), 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, + ACTIONS(722), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12038] = 3, + ACTIONS(724), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12820] = 3, - ACTIONS(738), 1, - aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(736), 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, + ACTIONS(726), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12057] = 3, + ACTIONS(728), 1, aux_sym__untrimmed_argument_token1, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [12842] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(730), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12076] = 3, + ACTIONS(732), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(734), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12095] = 3, + ACTIONS(736), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(738), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12114] = 3, ACTIONS(740), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11770,22 +11317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [12861] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(724), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - [12878] = 3, + [12133] = 3, ACTIONS(744), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11801,7 +11333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [12897] = 3, + [12152] = 3, ACTIONS(748), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11817,7 +11349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [12916] = 3, + [12171] = 3, ACTIONS(752), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11833,39 +11365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [12935] = 3, - ACTIONS(734), 1, - aux_sym_quoted_element_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(732), 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, - [12954] = 3, - ACTIONS(710), 1, - aux_sym_quoted_element_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(708), 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, - [12973] = 3, + [12190] = 3, ACTIONS(756), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11881,7 +11381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [12992] = 3, + [12209] = 3, ACTIONS(760), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11897,7 +11397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13011] = 3, + [12228] = 3, ACTIONS(764), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11913,23 +11413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13030] = 3, - ACTIONS(718), 1, - aux_sym_quoted_element_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(716), 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, - [13049] = 3, + [12247] = 3, ACTIONS(768), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11945,7 +11429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13068] = 3, + [12266] = 3, ACTIONS(772), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11961,7 +11445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13087] = 3, + [12285] = 3, ACTIONS(776), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11977,7 +11461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13106] = 3, + [12304] = 3, ACTIONS(780), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -11993,7 +11477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13125] = 3, + [12323] = 3, ACTIONS(784), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12009,7 +11493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13144] = 3, + [12342] = 3, ACTIONS(788), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12025,39 +11509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13163] = 3, - ACTIONS(726), 1, - aux_sym_quoted_element_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(724), 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, - [13182] = 3, - ACTIONS(730), 1, - aux_sym_quoted_element_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(728), 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, - [13201] = 3, + [12361] = 3, ACTIONS(792), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12073,7 +11525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13220] = 3, + [12380] = 3, ACTIONS(796), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12089,7 +11541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13239] = 3, + [12399] = 3, ACTIONS(800), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12105,7 +11557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13258] = 3, + [12418] = 3, ACTIONS(804), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12121,7 +11573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13277] = 3, + [12437] = 3, ACTIONS(808), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12137,7 +11589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13296] = 3, + [12456] = 3, ACTIONS(812), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12153,7 +11605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13315] = 3, + [12475] = 3, ACTIONS(816), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12169,7 +11621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13334] = 3, + [12494] = 3, ACTIONS(820), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12185,37 +11637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13353] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(728), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - [13370] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(708), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - [13387] = 3, + [12513] = 3, ACTIONS(824), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12231,7 +11653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13406] = 3, + [12532] = 3, ACTIONS(828), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12247,7 +11669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13425] = 3, + [12551] = 3, ACTIONS(832), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12263,39 +11685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13444] = 3, - ACTIONS(734), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(732), 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, - [13463] = 3, - ACTIONS(710), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(708), 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, - [13482] = 3, + [12570] = 3, ACTIONS(836), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12311,22 +11701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13501] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(732), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - [13518] = 3, + [12589] = 3, ACTIONS(840), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12342,394 +11717,208 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [13537] = 3, - ACTIONS(844), 1, + [12608] = 3, + ACTIONS(756), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(846), 9, + ACTIONS(758), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [12625] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(732), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(734), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [13556] = 3, - ACTIONS(848), 1, + [12642] = 3, + ACTIONS(776), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(850), 9, + ACTIONS(778), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13575] = 3, - ACTIONS(852), 1, + [12659] = 3, + ACTIONS(772), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(854), 9, + ACTIONS(774), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13594] = 3, - ACTIONS(856), 1, + [12676] = 3, + ACTIONS(768), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(858), 9, + ACTIONS(770), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13613] = 3, - ACTIONS(860), 1, + [12693] = 3, + ACTIONS(764), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(862), 9, + ACTIONS(766), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13632] = 3, - ACTIONS(864), 1, + [12710] = 3, + ACTIONS(688), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(866), 9, + ACTIONS(690), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13651] = 3, - ACTIONS(868), 1, + [12727] = 3, + ACTIONS(684), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(870), 9, + ACTIONS(686), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13670] = 3, - ACTIONS(872), 1, + [12744] = 3, + ACTIONS(736), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(874), 9, + ACTIONS(738), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13689] = 3, - ACTIONS(876), 1, + [12761] = 3, + ACTIONS(732), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(878), 9, + ACTIONS(734), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13708] = 3, - ACTIONS(718), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(716), 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, - [13727] = 3, - ACTIONS(880), 1, + [12778] = 3, + ACTIONS(728), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(882), 9, + ACTIONS(730), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [13746] = 2, + [12795] = 3, + ACTIONS(724), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(716), 10, + ACTIONS(726), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12812] = 3, + ACTIONS(720), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(722), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12829] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(656), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, aux_sym_variable_token1, - anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - [13763] = 3, - ACTIONS(884), 1, + [12844] = 3, + ACTIONS(712), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(886), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [13782] = 3, - ACTIONS(888), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(890), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [13801] = 3, - ACTIONS(892), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(894), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [13820] = 3, - ACTIONS(896), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(898), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [13839] = 3, - ACTIONS(726), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(724), 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, - [13858] = 3, - ACTIONS(730), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(728), 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, - [13877] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(730), 2, - aux_sym_unquoted_argument_token1, - aux_sym_else_command_token1, - ACTIONS(728), 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, - [13896] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(726), 2, - aux_sym_unquoted_argument_token1, - aux_sym_else_command_token1, - ACTIONS(724), 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, - [13915] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(718), 2, - aux_sym_unquoted_argument_token1, - aux_sym_else_command_token1, - ACTIONS(716), 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, - [13934] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(710), 2, - aux_sym_unquoted_argument_token1, - aux_sym_else_command_token1, - ACTIONS(708), 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, - [13953] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(734), 2, - aux_sym_unquoted_argument_token1, - aux_sym_else_command_token1, - ACTIONS(732), 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, - [13972] = 3, - ACTIONS(812), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(814), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [13989] = 3, - ACTIONS(880), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(882), 7, + ACTIONS(714), 7, sym_if, sym_foreach, sym_while, @@ -12737,13 +11926,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [14006] = 3, - ACTIONS(748), 1, + [12861] = 3, + ACTIONS(708), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(750), 7, + ACTIONS(710), 7, sym_if, sym_foreach, sym_while, @@ -12751,13 +11940,109 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [14023] = 3, - ACTIONS(864), 1, + [12878] = 3, + ACTIONS(704), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(866), 7, + ACTIONS(706), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12895] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(660), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + aux_sym_variable_token1, + anon_sym_DOLLAR, + anon_sym_RBRACE, + [12910] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(668), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + aux_sym_variable_token1, + anon_sym_DOLLAR, + anon_sym_RBRACE, + [12925] = 3, + ACTIONS(696), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(698), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12942] = 3, + ACTIONS(692), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(694), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12959] = 3, + ACTIONS(760), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(762), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12976] = 3, + ACTIONS(756), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(758), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [12993] = 3, + ACTIONS(832), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(834), 7, sym_if, sym_foreach, sym_while, @@ -12765,13 +12050,13 @@ static const uint16_t ts_small_parse_table[] = { sym_endfunction, sym_macro, sym_identifier, - [14040] = 3, - ACTIONS(856), 1, + [13010] = 3, + ACTIONS(828), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(858), 7, + ACTIONS(830), 7, sym_if, sym_foreach, sym_while, @@ -12779,63 +12064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_endfunction, sym_macro, sym_identifier, - [14057] = 3, - ACTIONS(852), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(854), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14074] = 3, - ACTIONS(848), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(850), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14091] = 3, - ACTIONS(844), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(846), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14108] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(824), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(826), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [14125] = 3, + [13027] = 3, ACTIONS(824), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12845,11 +12074,25 @@ static const uint16_t ts_small_parse_table[] = { sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, + sym_endfunction, sym_macro, sym_identifier, - [14142] = 3, + [13044] = 3, + ACTIONS(820), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(822), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13061] = 3, ACTIONS(808), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -12863,993 +12106,13 @@ static const uint16_t ts_small_parse_table[] = { sym_endfunction, sym_macro, sym_identifier, - [14159] = 3, - ACTIONS(804), 1, + [13078] = 3, + ACTIONS(712), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(806), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14176] = 3, - ACTIONS(800), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(802), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14193] = 3, - ACTIONS(792), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(794), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14210] = 3, - ACTIONS(788), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(790), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14227] = 3, - ACTIONS(784), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(786), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14244] = 3, - ACTIONS(764), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(766), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14261] = 3, - ACTIONS(760), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(762), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14278] = 3, - ACTIONS(756), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(758), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14295] = 3, - ACTIONS(776), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(778), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14312] = 3, - ACTIONS(780), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(782), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14329] = 3, - ACTIONS(892), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(894), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14346] = 3, - ACTIONS(796), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(798), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [14363] = 3, - ACTIONS(880), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(882), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14380] = 3, - ACTIONS(876), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(878), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14397] = 3, - ACTIONS(872), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(874), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14414] = 3, - ACTIONS(868), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(870), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14431] = 3, - ACTIONS(860), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(862), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14448] = 3, - ACTIONS(828), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(830), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14465] = 3, - ACTIONS(812), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(814), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [14482] = 3, - ACTIONS(816), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(818), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [14499] = 3, - ACTIONS(820), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(822), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14516] = 3, - ACTIONS(816), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(818), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14533] = 3, - ACTIONS(812), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(814), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14550] = 3, - ACTIONS(796), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(798), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14567] = 3, - ACTIONS(824), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(826), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14584] = 3, - ACTIONS(744), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(746), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14601] = 3, - ACTIONS(748), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(750), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [14618] = 3, - ACTIONS(864), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(866), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14635] = 3, - ACTIONS(856), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(858), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14652] = 3, - ACTIONS(852), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(854), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14669] = 3, - ACTIONS(848), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(850), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14686] = 3, - ACTIONS(844), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(846), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14703] = 3, - ACTIONS(808), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(810), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14720] = 3, - ACTIONS(804), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(806), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14737] = 3, - ACTIONS(800), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(802), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14754] = 3, - ACTIONS(792), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(794), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14771] = 3, - ACTIONS(788), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(790), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14788] = 3, - ACTIONS(784), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(786), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14805] = 3, - ACTIONS(764), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(766), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14822] = 3, - ACTIONS(760), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(762), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14839] = 3, - ACTIONS(756), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(758), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14856] = 3, - ACTIONS(776), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(778), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14873] = 3, - ACTIONS(780), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(782), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14890] = 3, - ACTIONS(892), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(894), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14907] = 3, - ACTIONS(880), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(882), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14924] = 3, - ACTIONS(876), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(878), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14941] = 3, - ACTIONS(872), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(874), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14958] = 3, - ACTIONS(868), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(870), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14975] = 3, - ACTIONS(860), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(862), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [14992] = 3, - ACTIONS(828), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(830), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15009] = 3, - ACTIONS(820), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(822), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15026] = 3, - ACTIONS(816), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(818), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15043] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(796), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(798), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15060] = 3, - ACTIONS(796), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(798), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15077] = 3, - ACTIONS(824), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(826), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15094] = 3, - ACTIONS(744), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(746), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15111] = 3, - ACTIONS(748), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(750), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15128] = 3, - ACTIONS(820), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(822), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15145] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(812), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(814), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15162] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(816), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(818), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15179] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(864), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(866), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15196] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(856), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(858), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15213] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(820), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(822), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15230] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(852), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(854), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15247] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(850), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15264] = 3, - ACTIONS(828), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(830), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15281] = 3, - ACTIONS(860), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(862), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15298] = 3, - ACTIONS(868), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(870), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15315] = 3, - ACTIONS(872), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(874), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15332] = 3, - ACTIONS(876), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(878), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15349] = 3, - ACTIONS(804), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(806), 7, + ACTIONS(714), 7, sym_if, sym_foreach, sym_endforeach, @@ -13857,13 +12120,419 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [15366] = 3, - ACTIONS(892), 1, + [13095] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(678), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(676), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + [13112] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(654), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(652), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + [13129] = 3, + ACTIONS(804), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(894), 7, + ACTIONS(806), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13146] = 3, + ACTIONS(800), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(802), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13163] = 3, + ACTIONS(796), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(798), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13180] = 3, + ACTIONS(792), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(794), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13197] = 3, + ACTIONS(788), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(790), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13214] = 3, + ACTIONS(784), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(786), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13231] = 3, + ACTIONS(780), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(782), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13248] = 3, + ACTIONS(776), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(778), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13265] = 3, + ACTIONS(772), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(774), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13282] = 3, + ACTIONS(768), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(770), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13299] = 3, + ACTIONS(764), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(766), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13316] = 3, + ACTIONS(688), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(690), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13333] = 3, + ACTIONS(684), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(686), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13350] = 3, + ACTIONS(736), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(738), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13367] = 3, + ACTIONS(732), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(734), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13384] = 3, + ACTIONS(728), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(730), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13401] = 3, + ACTIONS(724), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(726), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13418] = 3, + ACTIONS(720), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(722), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13435] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(658), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(656), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + [13452] = 3, + ACTIONS(712), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(714), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13469] = 3, + ACTIONS(708), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(710), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13486] = 3, + ACTIONS(704), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(706), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13503] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(662), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(660), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + [13520] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(670), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(668), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + [13537] = 3, + ACTIONS(696), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(698), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13554] = 3, + ACTIONS(692), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(694), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13571] = 3, + ACTIONS(760), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(762), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13588] = 3, + ACTIONS(784), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(786), 7, sym_if, sym_foreach, sym_while, @@ -13871,7 +12540,649 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [15383] = 3, + [13605] = 3, + ACTIONS(832), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(834), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13622] = 3, + ACTIONS(828), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(830), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13639] = 3, + ACTIONS(824), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(826), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13656] = 3, + ACTIONS(820), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(822), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13673] = 3, + ACTIONS(808), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(810), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13690] = 3, + ACTIONS(804), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(806), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13707] = 3, + ACTIONS(800), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(802), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13724] = 3, + ACTIONS(796), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(798), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13741] = 3, + ACTIONS(792), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(794), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13758] = 3, + ACTIONS(788), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(790), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13775] = 3, + ACTIONS(784), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(786), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13792] = 3, + ACTIONS(780), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(782), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13809] = 3, + ACTIONS(776), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(778), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13826] = 3, + ACTIONS(772), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(774), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13843] = 3, + ACTIONS(768), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(770), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13860] = 3, + ACTIONS(764), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(766), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13877] = 3, + ACTIONS(688), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(690), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13894] = 3, + ACTIONS(684), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(686), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13911] = 3, + ACTIONS(736), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(738), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13928] = 3, + ACTIONS(732), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(734), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13945] = 3, + ACTIONS(728), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(730), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13962] = 3, + ACTIONS(724), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(726), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13979] = 3, + ACTIONS(720), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(722), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [13996] = 3, + ACTIONS(712), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(714), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14013] = 3, + ACTIONS(708), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(710), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14030] = 3, + ACTIONS(704), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(706), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14047] = 3, + ACTIONS(696), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(698), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14064] = 3, + ACTIONS(692), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(694), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14081] = 3, + ACTIONS(760), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(762), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14098] = 3, + ACTIONS(756), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(758), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14115] = 3, + ACTIONS(788), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(790), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14132] = 3, + ACTIONS(792), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(794), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14149] = 3, + ACTIONS(796), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(798), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14166] = 3, + ACTIONS(800), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(802), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14183] = 3, + ACTIONS(804), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(806), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14200] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(652), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + aux_sym_variable_token1, + anon_sym_DOLLAR, + anon_sym_RBRACE, + [14215] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(676), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + aux_sym_variable_token1, + anon_sym_DOLLAR, + anon_sym_RBRACE, + [14230] = 3, + ACTIONS(808), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(810), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14247] = 3, + ACTIONS(820), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(822), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14264] = 3, + ACTIONS(824), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(826), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14281] = 3, + ACTIONS(828), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(830), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14298] = 3, + ACTIONS(832), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(834), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14315] = 3, + ACTIONS(756), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(758), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14332] = 3, + ACTIONS(760), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(762), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14349] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(832), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(834), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14366] = 3, + ACTIONS(692), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(694), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14383] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, @@ -13885,97 +13196,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [15400] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(844), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(846), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15417] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(860), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(862), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15434] = 3, - ACTIONS(780), 1, + [14400] = 3, + ACTIONS(696), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(782), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15451] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(744), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(746), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15468] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(748), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(750), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15485] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(868), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(870), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15502] = 3, - ACTIONS(864), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(866), 7, + ACTIONS(698), 7, sym_if, sym_foreach, sym_endforeach, @@ -13983,357 +13210,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [15519] = 3, - ACTIONS(856), 1, - aux_sym__untrimmed_argument_token1, + [14417] = 3, + ACTIONS(670), 1, + aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(858), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15536] = 3, - ACTIONS(776), 1, - aux_sym__untrimmed_argument_token1, + ACTIONS(668), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [14434] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(778), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15553] = 3, - ACTIONS(756), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(758), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15570] = 3, - ACTIONS(760), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(762), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15587] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(872), 2, + ACTIONS(824), 2, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(874), 6, + ACTIONS(826), 6, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [15604] = 3, - ACTIONS(764), 1, - aux_sym__untrimmed_argument_token1, + [14451] = 3, + ACTIONS(662), 1, + aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(766), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15621] = 3, + ACTIONS(660), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [14468] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(876), 2, + ACTIONS(820), 2, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(878), 6, + ACTIONS(822), 6, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [15638] = 3, - ACTIONS(852), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(854), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15655] = 3, - ACTIONS(848), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(850), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15672] = 3, - ACTIONS(844), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(846), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15689] = 3, - ACTIONS(784), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(786), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15706] = 3, - ACTIONS(788), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(790), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15723] = 3, - ACTIONS(900), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(902), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15740] = 3, - ACTIONS(904), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(906), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15757] = 3, - ACTIONS(908), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(910), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [15774] = 3, - ACTIONS(912), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(914), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15791] = 3, - ACTIONS(792), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(794), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15808] = 3, - ACTIONS(800), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(802), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15825] = 3, - ACTIONS(804), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(806), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15842] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(880), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(882), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15859] = 3, - ACTIONS(916), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(918), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [15876] = 3, - ACTIONS(920), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(922), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [15893] = 3, - ACTIONS(924), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(926), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15910] = 3, - ACTIONS(928), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(930), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [15927] = 3, - ACTIONS(808), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(810), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15944] = 3, + [14485] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, @@ -14347,7 +13280,21 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [15961] = 3, + [14502] = 3, + ACTIONS(704), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(706), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14519] = 3, ACTIONS(844), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -14356,32 +13303,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(846), 7, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_identifier, - [15978] = 3, - ACTIONS(848), 1, + [14536] = 3, + ACTIONS(708), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(850), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [15995] = 3, - ACTIONS(808), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(810), 7, + ACTIONS(710), 7, sym_if, sym_foreach, sym_endforeach, @@ -14389,147 +13322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16012] = 3, - ACTIONS(852), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(854), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [16029] = 3, - ACTIONS(856), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(858), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [16046] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(892), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(894), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16063] = 3, - ACTIONS(864), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(866), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [16080] = 3, - ACTIONS(748), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(750), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16097] = 3, - ACTIONS(744), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(746), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [16114] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(780), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(782), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16131] = 3, - ACTIONS(744), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(746), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16148] = 3, - ACTIONS(824), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(826), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16165] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(776), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(778), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16182] = 3, + [14553] = 3, ACTIONS(796), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -14543,27 +13336,27 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16199] = 3, + [14570] = 3, + ACTIONS(658), 1, + aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(756), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(758), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16216] = 3, - ACTIONS(812), 1, + ACTIONS(656), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [14587] = 3, + ACTIONS(720), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(814), 7, + ACTIONS(722), 7, sym_if, sym_foreach, sym_endforeach, @@ -14571,153 +13364,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16233] = 3, - ACTIONS(816), 1, + [14604] = 3, + ACTIONS(848), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(818), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16250] = 3, - ACTIONS(820), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(822), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16267] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(760), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(762), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16284] = 3, - ACTIONS(828), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(830), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16301] = 3, - ACTIONS(860), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(862), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16318] = 3, - ACTIONS(868), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(870), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16335] = 3, - ACTIONS(872), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(874), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16352] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(764), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(766), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16369] = 3, - ACTIONS(932), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(934), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [16386] = 3, - ACTIONS(936), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(938), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [16403] = 3, - ACTIONS(940), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(942), 7, + ACTIONS(850), 7, sym_if, sym_foreach, sym_while, @@ -14725,13 +13378,27 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16420] = 3, - ACTIONS(944), 1, + [14621] = 3, + ACTIONS(852), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(946), 7, + ACTIONS(854), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14638] = 3, + ACTIONS(724), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(726), 7, sym_if, sym_foreach, sym_endforeach, @@ -14739,13 +13406,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16437] = 3, - ACTIONS(876), 1, + [14655] = 3, + ACTIONS(728), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(878), 7, + ACTIONS(730), 7, sym_if, sym_foreach, sym_endforeach, @@ -14753,35 +13420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16454] = 3, - ACTIONS(880), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(882), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16471] = 3, - ACTIONS(892), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(894), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16488] = 3, + [14672] = 3, ACTIONS(780), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, @@ -14790,180 +13429,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(782), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_identifier, - [16505] = 3, - ACTIONS(776), 1, + [14689] = 3, + ACTIONS(856), 1, aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(778), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16522] = 3, - ACTIONS(756), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(758), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16539] = 3, - ACTIONS(760), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(762), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16556] = 3, - ACTIONS(764), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(766), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16573] = 3, - ACTIONS(784), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(786), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16590] = 3, - ACTIONS(788), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(790), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16607] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(784), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(786), 6, + ACTIONS(858), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_identifier, - [16624] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(788), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(790), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16641] = 3, - ACTIONS(792), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(794), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16658] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(792), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(794), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16675] = 3, - ACTIONS(800), 1, - aux_sym__untrimmed_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(802), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16692] = 3, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(800), 2, - ts_builtin_sym_end, - aux_sym__untrimmed_argument_token1, - ACTIONS(802), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [16709] = 3, + [14706] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, @@ -14977,288 +13462,1196 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [16726] = 4, - ACTIONS(948), 1, + [14723] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(800), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(802), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14740] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(796), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(798), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14757] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(792), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(794), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14774] = 3, + ACTIONS(732), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(734), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14791] = 3, + ACTIONS(736), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(738), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14808] = 3, + ACTIONS(684), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(686), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14825] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(788), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(790), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14842] = 3, + ACTIONS(688), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(690), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14859] = 3, + ACTIONS(764), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(766), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14876] = 3, + ACTIONS(768), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(770), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14893] = 3, + ACTIONS(772), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(774), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14910] = 3, + ACTIONS(776), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(778), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14927] = 3, + ACTIONS(780), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(782), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14944] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(784), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(786), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14961] = 3, + ACTIONS(784), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(786), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14978] = 3, + ACTIONS(788), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(790), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [14995] = 3, + ACTIONS(792), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(794), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15012] = 3, + ACTIONS(860), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(862), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15029] = 3, + ACTIONS(864), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(866), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15046] = 3, + ACTIONS(868), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(870), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [15063] = 3, + ACTIONS(800), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(802), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15080] = 3, + ACTIONS(804), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(806), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15097] = 3, + ACTIONS(872), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(874), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [15114] = 3, + ACTIONS(654), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(652), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [15131] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(780), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(782), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15148] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(776), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(778), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15165] = 3, + ACTIONS(678), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(676), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [15182] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(772), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(774), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15199] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(736), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(738), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15216] = 3, + ACTIONS(808), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(810), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15233] = 3, + ACTIONS(820), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(822), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15250] = 3, + ACTIONS(824), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(826), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15267] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(704), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(706), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15284] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(708), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(710), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15301] = 3, + ACTIONS(828), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(830), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15318] = 3, + ACTIONS(832), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(834), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15335] = 3, + ACTIONS(876), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(878), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15352] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(688), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(690), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15369] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(684), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(686), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15386] = 3, + ACTIONS(880), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(882), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [15403] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(768), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(770), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15420] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(712), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(714), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15437] = 3, + ACTIONS(670), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(668), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [15454] = 3, + ACTIONS(662), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(660), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [15471] = 3, + ACTIONS(658), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(656), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [15488] = 3, + ACTIONS(884), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(886), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [15505] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(720), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(722), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15522] = 3, + ACTIONS(654), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(652), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [15539] = 3, + ACTIONS(678), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(676), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [15556] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(724), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(726), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15573] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(756), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(758), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15590] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(760), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(762), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15607] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(728), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(730), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15624] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(692), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(694), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15641] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(764), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(766), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15658] = 3, + ACTIONS(888), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(890), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15675] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(696), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(698), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15692] = 4, + ACTIONS(892), 1, aux_sym_if_command_token1, - ACTIONS(950), 1, + ACTIONS(894), 1, anon_sym_LPAREN, - STATE(541), 1, + STATE(477), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [16740] = 4, - ACTIONS(952), 1, + [15706] = 4, + ACTIONS(896), 1, aux_sym_if_command_token1, - ACTIONS(954), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(537), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [16754] = 4, - ACTIONS(952), 1, + [15720] = 4, + ACTIONS(900), 1, aux_sym_if_command_token1, - ACTIONS(956), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(470), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [16768] = 4, - ACTIONS(958), 1, + [15734] = 4, + ACTIONS(904), 1, aux_sym_if_command_token1, - ACTIONS(960), 1, + ACTIONS(906), 1, anon_sym_LPAREN, - STATE(502), 1, + STATE(472), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [16782] = 4, - ACTIONS(952), 1, + [15748] = 4, + ACTIONS(908), 1, aux_sym_if_command_token1, - ACTIONS(962), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16796] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(964), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16810] = 4, - ACTIONS(966), 1, - aux_sym_if_command_token1, - ACTIONS(968), 1, - anon_sym_LPAREN, - STATE(464), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16824] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(970), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16838] = 4, - ACTIONS(972), 1, - aux_sym_if_command_token1, - ACTIONS(974), 1, - anon_sym_LPAREN, - STATE(476), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16852] = 4, - ACTIONS(976), 1, - aux_sym_if_command_token1, - ACTIONS(978), 1, - anon_sym_LPAREN, - STATE(485), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16866] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(980), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16880] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(982), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16894] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(984), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16908] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(986), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16922] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(988), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16936] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(990), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16950] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(992), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16964] = 4, - ACTIONS(994), 1, - aux_sym_if_command_token1, - ACTIONS(996), 1, - anon_sym_LPAREN, - STATE(466), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16978] = 4, - ACTIONS(998), 1, - aux_sym_if_command_token1, - ACTIONS(1000), 1, - anon_sym_LPAREN, - STATE(467), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [16992] = 4, - ACTIONS(1002), 1, - aux_sym_if_command_token1, - ACTIONS(1004), 1, - anon_sym_LPAREN, - STATE(469), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17006] = 4, - ACTIONS(1006), 1, - aux_sym_if_command_token1, - ACTIONS(1008), 1, - anon_sym_LPAREN, - STATE(474), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17020] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1010), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17034] = 4, - ACTIONS(1012), 1, - aux_sym_if_command_token1, - ACTIONS(1014), 1, + ACTIONS(910), 1, anon_sym_LPAREN, STATE(473), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17048] = 4, + [15762] = 4, + ACTIONS(912), 1, + aux_sym_if_command_token1, + ACTIONS(914), 1, + anon_sym_LPAREN, + STATE(474), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15776] = 4, + ACTIONS(916), 1, + aux_sym_if_command_token1, + ACTIONS(918), 1, + anon_sym_LPAREN, + STATE(475), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15790] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(922), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15804] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(924), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15818] = 4, + ACTIONS(926), 1, + anon_sym_LBRACE, + ACTIONS(928), 1, + anon_sym_ENV, + ACTIONS(930), 1, + anon_sym_CACHE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15832] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15846] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(934), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15860] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(936), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15874] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(938), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15888] = 4, + ACTIONS(940), 1, + anon_sym_LBRACE, + ACTIONS(942), 1, + anon_sym_ENV, + ACTIONS(944), 1, + anon_sym_CACHE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15902] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(946), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15916] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(948), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [15930] = 4, + ACTIONS(950), 1, + aux_sym_if_command_token1, ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1016), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(505), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17062] = 4, - ACTIONS(952), 1, + [15944] = 4, + ACTIONS(920), 1, aux_sym_if_command_token1, - ACTIONS(1018), 1, + ACTIONS(954), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(530), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17076] = 4, - ACTIONS(1020), 1, + [15958] = 4, + ACTIONS(956), 1, aux_sym_if_command_token1, - ACTIONS(1022), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - STATE(463), 1, + STATE(549), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17090] = 4, - ACTIONS(952), 1, + [15972] = 4, + ACTIONS(960), 1, aux_sym_if_command_token1, - ACTIONS(1024), 1, + ACTIONS(962), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(546), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17104] = 4, - ACTIONS(1026), 1, + [15986] = 4, + ACTIONS(964), 1, aux_sym_if_command_token1, - ACTIONS(1028), 1, + ACTIONS(966), 1, + anon_sym_LPAREN, + STATE(508), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16000] = 4, + ACTIONS(968), 1, + aux_sym_if_command_token1, + ACTIONS(970), 1, + anon_sym_LPAREN, + STATE(551), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16014] = 4, + ACTIONS(972), 1, + anon_sym_LBRACE, + ACTIONS(974), 1, + anon_sym_ENV, + ACTIONS(976), 1, + anon_sym_CACHE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16028] = 4, + ACTIONS(978), 1, + aux_sym_if_command_token1, + ACTIONS(980), 1, + anon_sym_LPAREN, + STATE(544), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16042] = 4, + ACTIONS(982), 1, + aux_sym_if_command_token1, + ACTIONS(984), 1, + anon_sym_LPAREN, + STATE(538), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16056] = 4, + ACTIONS(986), 1, + aux_sym_if_command_token1, + ACTIONS(988), 1, anon_sym_LPAREN, STATE(478), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17118] = 4, - ACTIONS(952), 1, + [16070] = 4, + ACTIONS(990), 1, + anon_sym_LBRACE, + ACTIONS(992), 1, + anon_sym_ENV, + ACTIONS(994), 1, + anon_sym_CACHE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16084] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(996), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16098] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(998), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16112] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1000), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16126] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1002), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16140] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1004), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16154] = 4, + ACTIONS(1006), 1, + aux_sym_if_command_token1, + ACTIONS(1008), 1, + anon_sym_LPAREN, + STATE(490), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16168] = 4, + ACTIONS(1010), 1, + aux_sym_if_command_token1, + ACTIONS(1012), 1, + anon_sym_LPAREN, + STATE(491), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16182] = 4, + ACTIONS(1014), 1, + aux_sym_if_command_token1, + ACTIONS(1016), 1, + anon_sym_LPAREN, + STATE(492), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16196] = 4, + ACTIONS(1018), 1, + aux_sym_if_command_token1, + ACTIONS(1020), 1, + anon_sym_LPAREN, + STATE(493), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16210] = 4, + ACTIONS(1022), 1, + aux_sym_if_command_token1, + ACTIONS(1024), 1, + anon_sym_LPAREN, + STATE(494), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16224] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1026), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16238] = 4, + ACTIONS(1028), 1, aux_sym_if_command_token1, ACTIONS(1030), 1, anon_sym_LPAREN, @@ -15267,1388 +14660,1328 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17132] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, + [16252] = 4, ACTIONS(1032), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17146] = 4, - ACTIONS(952), 1, aux_sym_if_command_token1, ACTIONS(1034), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(535), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17160] = 4, + [16266] = 4, ACTIONS(1036), 1, aux_sym_if_command_token1, ACTIONS(1038), 1, anon_sym_LPAREN, - STATE(542), 1, + STATE(480), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17174] = 4, + [16280] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, ACTIONS(1040), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16294] = 4, + ACTIONS(920), 1, aux_sym_if_command_token1, ACTIONS(1042), 1, anon_sym_LPAREN, - STATE(524), 1, + STATE(530), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17188] = 4, + [16308] = 4, ACTIONS(1044), 1, aux_sym_if_command_token1, ACTIONS(1046), 1, anon_sym_LPAREN, - STATE(497), 1, + STATE(504), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17202] = 4, + [16322] = 4, ACTIONS(1048), 1, aux_sym_if_command_token1, ACTIONS(1050), 1, anon_sym_LPAREN, - STATE(475), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17216] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1052), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17230] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1054), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17244] = 4, - ACTIONS(1056), 1, - aux_sym_if_command_token1, - ACTIONS(1058), 1, - anon_sym_LPAREN, - STATE(507), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17258] = 4, - ACTIONS(1060), 1, - aux_sym_if_command_token1, - ACTIONS(1063), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17272] = 4, - ACTIONS(1065), 1, - aux_sym_if_command_token1, - ACTIONS(1067), 1, - anon_sym_LPAREN, - STATE(498), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17286] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1069), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17300] = 4, - ACTIONS(1071), 1, - aux_sym_if_command_token1, - ACTIONS(1073), 1, - anon_sym_LPAREN, - STATE(514), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17314] = 4, - ACTIONS(1075), 1, - aux_sym_if_command_token1, - ACTIONS(1077), 1, - anon_sym_LPAREN, - STATE(515), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17328] = 4, - ACTIONS(1079), 1, - aux_sym_if_command_token1, - ACTIONS(1081), 1, - anon_sym_LPAREN, - STATE(520), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17342] = 4, - ACTIONS(1083), 1, - aux_sym_if_command_token1, - ACTIONS(1085), 1, - anon_sym_LPAREN, - STATE(522), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17356] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1087), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17370] = 4, - ACTIONS(1089), 1, - aux_sym_if_command_token1, - ACTIONS(1091), 1, - anon_sym_LPAREN, - STATE(491), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17384] = 4, - ACTIONS(1093), 1, - aux_sym_if_command_token1, - ACTIONS(1095), 1, - anon_sym_LPAREN, - STATE(543), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17398] = 4, - ACTIONS(1097), 1, - aux_sym_if_command_token1, - ACTIONS(1099), 1, - anon_sym_LPAREN, - STATE(528), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17412] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1101), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17426] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1103), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17440] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1105), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17454] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1107), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17468] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1109), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17482] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17496] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1113), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17510] = 4, - ACTIONS(1115), 1, - aux_sym_if_command_token1, - ACTIONS(1117), 1, - anon_sym_LPAREN, - STATE(526), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17524] = 4, - ACTIONS(1119), 1, - aux_sym_if_command_token1, - ACTIONS(1121), 1, - anon_sym_LPAREN, - STATE(511), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17538] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1123), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17552] = 4, - ACTIONS(1125), 1, - aux_sym_if_command_token1, - ACTIONS(1127), 1, - anon_sym_LPAREN, - STATE(472), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17566] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1129), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17580] = 4, - ACTIONS(1131), 1, - aux_sym_if_command_token1, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(477), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17594] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1135), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17608] = 4, - ACTIONS(1137), 1, - aux_sym_if_command_token1, - ACTIONS(1139), 1, - anon_sym_LPAREN, - STATE(483), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17622] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1141), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17636] = 4, - ACTIONS(1143), 1, - aux_sym_if_command_token1, - ACTIONS(1145), 1, - anon_sym_LPAREN, - STATE(486), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17650] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1147), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17664] = 4, - ACTIONS(1149), 1, - aux_sym_if_command_token1, - ACTIONS(1151), 1, - anon_sym_LPAREN, - STATE(488), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17678] = 4, - ACTIONS(1153), 1, - aux_sym_if_command_token1, - ACTIONS(1155), 1, - anon_sym_LPAREN, - STATE(490), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17692] = 4, - ACTIONS(1157), 1, - aux_sym_if_command_token1, - ACTIONS(1159), 1, - anon_sym_LPAREN, - STATE(492), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17706] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1161), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17720] = 4, - ACTIONS(1163), 1, - aux_sym_if_command_token1, - ACTIONS(1165), 1, - anon_sym_LPAREN, - STATE(512), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17734] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1167), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17748] = 4, - ACTIONS(1169), 1, - aux_sym_if_command_token1, - ACTIONS(1171), 1, - anon_sym_LPAREN, - STATE(513), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17762] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1173), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17776] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1175), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17790] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1177), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17804] = 4, - ACTIONS(1179), 1, - aux_sym_if_command_token1, - ACTIONS(1181), 1, - anon_sym_LPAREN, - STATE(516), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17818] = 4, - ACTIONS(1183), 1, - aux_sym_if_command_token1, - ACTIONS(1185), 1, - anon_sym_LPAREN, - STATE(517), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17832] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1187), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17846] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1189), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17860] = 4, - ACTIONS(952), 1, - aux_sym_if_command_token1, - ACTIONS(1191), 1, - anon_sym_LPAREN, - STATE(500), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17874] = 4, - ACTIONS(1193), 1, - aux_sym_if_command_token1, - ACTIONS(1195), 1, - anon_sym_LPAREN, STATE(532), 1, aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [17888] = 4, + [16336] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1052), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16350] = 4, + ACTIONS(1054), 1, + aux_sym_if_command_token1, + ACTIONS(1056), 1, + anon_sym_LPAREN, + STATE(513), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16364] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1058), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16378] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16392] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1062), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16406] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1064), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16420] = 4, + ACTIONS(1066), 1, + aux_sym_if_command_token1, + ACTIONS(1068), 1, + anon_sym_LPAREN, + STATE(469), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16434] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1070), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16448] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1072), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16462] = 4, + ACTIONS(1074), 1, + aux_sym_if_command_token1, + ACTIONS(1076), 1, + anon_sym_LPAREN, + STATE(510), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16476] = 4, + ACTIONS(1078), 1, + aux_sym_if_command_token1, + ACTIONS(1080), 1, + anon_sym_LPAREN, + STATE(511), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16490] = 4, + ACTIONS(1082), 1, + aux_sym_if_command_token1, + ACTIONS(1084), 1, + anon_sym_LPAREN, + STATE(512), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16504] = 4, + ACTIONS(1086), 1, + aux_sym_if_command_token1, + ACTIONS(1088), 1, + anon_sym_LPAREN, + STATE(515), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16518] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1090), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16532] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1092), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16546] = 4, + ACTIONS(1094), 1, + aux_sym_if_command_token1, + ACTIONS(1096), 1, + anon_sym_LPAREN, + STATE(516), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16560] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1098), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16574] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1100), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16588] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1102), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16602] = 4, + ACTIONS(1104), 1, + aux_sym_if_command_token1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + STATE(525), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16616] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1108), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16630] = 4, + ACTIONS(1110), 1, + anon_sym_LBRACE, + ACTIONS(1112), 1, + anon_sym_ENV, + ACTIONS(1114), 1, + anon_sym_CACHE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16644] = 4, + ACTIONS(1116), 1, + aux_sym_if_command_token1, + ACTIONS(1119), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16658] = 4, + ACTIONS(1121), 1, + aux_sym_if_command_token1, + ACTIONS(1123), 1, + anon_sym_LPAREN, + STATE(521), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16672] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1125), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16686] = 4, + ACTIONS(920), 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, + [16700] = 4, + ACTIONS(1129), 1, + aux_sym_if_command_token1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + STATE(522), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16714] = 4, + ACTIONS(920), 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, + [16728] = 4, + ACTIONS(1135), 1, + aux_sym_if_command_token1, + ACTIONS(1137), 1, + anon_sym_LPAREN, + STATE(524), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16742] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16756] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1141), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16770] = 4, + ACTIONS(1143), 1, + aux_sym_if_command_token1, + ACTIONS(1145), 1, + anon_sym_LPAREN, + STATE(526), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16784] = 4, + ACTIONS(1147), 1, + aux_sym_if_command_token1, + ACTIONS(1149), 1, + anon_sym_LPAREN, + STATE(528), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16798] = 4, + ACTIONS(920), 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, + [16812] = 4, + ACTIONS(920), 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, + [16826] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1155), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16840] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1157), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16854] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1159), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16868] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1161), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16882] = 4, + ACTIONS(1163), 1, + aux_sym_if_command_token1, + ACTIONS(1165), 1, + anon_sym_LPAREN, + STATE(543), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16896] = 4, + ACTIONS(1167), 1, + aux_sym_if_command_token1, + ACTIONS(1169), 1, + anon_sym_LPAREN, + STATE(533), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16910] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1171), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16924] = 4, + ACTIONS(1173), 1, + aux_sym_if_command_token1, + ACTIONS(1175), 1, + anon_sym_LPAREN, + STATE(545), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16938] = 4, + ACTIONS(920), 1, + aux_sym_if_command_token1, + ACTIONS(1177), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16952] = 4, + ACTIONS(1179), 1, + aux_sym_if_command_token1, + ACTIONS(1181), 1, + anon_sym_LPAREN, + STATE(541), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16966] = 4, + ACTIONS(1183), 1, + aux_sym_if_command_token1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + STATE(542), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16980] = 3, + ACTIONS(1187), 1, + anon_sym_RPAREN, + ACTIONS(1189), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16991] = 3, + ACTIONS(1191), 1, + anon_sym_RPAREN, + ACTIONS(1193), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17002] = 3, + ACTIONS(1195), 1, + anon_sym_RPAREN, ACTIONS(1197), 1, - aux_sym_if_command_token1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17013] = 3, ACTIONS(1199), 1, - anon_sym_LPAREN, - STATE(534), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17902] = 4, + anon_sym_RPAREN, ACTIONS(1201), 1, - aux_sym_if_command_token1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17024] = 3, ACTIONS(1203), 1, - anon_sym_LPAREN, - STATE(536), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17916] = 4, + anon_sym_RPAREN, ACTIONS(1205), 1, - aux_sym_if_command_token1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17035] = 3, ACTIONS(1207), 1, - anon_sym_LPAREN, - STATE(537), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17930] = 4, + anon_sym_RPAREN, ACTIONS(1209), 1, - aux_sym_if_command_token1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17046] = 3, ACTIONS(1211), 1, - anon_sym_LPAREN, - STATE(538), 1, - aux_sym_if_command_repeat1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17944] = 3, + anon_sym_RPAREN, ACTIONS(1213), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17057] = 3, ACTIONS(1215), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17955] = 3, + anon_sym_RPAREN, ACTIONS(1217), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17068] = 3, ACTIONS(1219), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17966] = 3, + anon_sym_RPAREN, ACTIONS(1221), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17079] = 3, ACTIONS(1223), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17977] = 3, + anon_sym_RPAREN, ACTIONS(1225), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17090] = 3, ACTIONS(1227), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17988] = 3, + anon_sym_RPAREN, ACTIONS(1229), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17101] = 3, ACTIONS(1231), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [17999] = 3, + anon_sym_RPAREN, ACTIONS(1233), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17112] = 3, ACTIONS(1235), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18010] = 3, + anon_sym_RPAREN, ACTIONS(1237), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17123] = 3, ACTIONS(1239), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18021] = 3, + anon_sym_RPAREN, ACTIONS(1241), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17134] = 3, ACTIONS(1243), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18032] = 3, + anon_sym_RPAREN, ACTIONS(1245), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17145] = 3, ACTIONS(1247), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18043] = 3, + anon_sym_RPAREN, ACTIONS(1249), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17156] = 3, ACTIONS(1251), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18054] = 3, + anon_sym_RPAREN, ACTIONS(1253), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17167] = 3, ACTIONS(1255), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18065] = 3, + anon_sym_RPAREN, ACTIONS(1257), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17178] = 3, ACTIONS(1259), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18076] = 3, + anon_sym_RPAREN, ACTIONS(1261), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17189] = 3, ACTIONS(1263), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18087] = 3, + anon_sym_RPAREN, ACTIONS(1265), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17200] = 3, ACTIONS(1267), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18098] = 3, + anon_sym_RPAREN, ACTIONS(1269), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17211] = 3, ACTIONS(1271), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18109] = 3, + anon_sym_RPAREN, ACTIONS(1273), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17222] = 3, ACTIONS(1275), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18120] = 3, + anon_sym_RPAREN, ACTIONS(1277), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17233] = 3, ACTIONS(1279), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18131] = 3, + anon_sym_RPAREN, ACTIONS(1281), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17244] = 3, ACTIONS(1283), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18142] = 3, + anon_sym_RPAREN, ACTIONS(1285), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17255] = 3, ACTIONS(1287), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18153] = 3, + anon_sym_RPAREN, ACTIONS(1289), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17266] = 2, ACTIONS(1291), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18164] = 3, + [17274] = 2, ACTIONS(1293), 1, - anon_sym_RPAREN, - ACTIONS(1295), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18175] = 3, + [17282] = 2, + ACTIONS(1295), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17290] = 2, ACTIONS(1297), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17298] = 2, ACTIONS(1299), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18186] = 3, + [17306] = 2, ACTIONS(1301), 1, - anon_sym_RPAREN, - ACTIONS(1303), 1, - aux_sym_else_command_token1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18197] = 3, + [17314] = 2, + ACTIONS(1303), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17322] = 2, ACTIONS(1305), 1, anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17330] = 2, ACTIONS(1307), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17338] = 2, + ACTIONS(1309), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18208] = 3, - ACTIONS(1309), 1, - anon_sym_RPAREN, + [17346] = 2, ACTIONS(1311), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18219] = 3, + [17354] = 2, ACTIONS(1313), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17362] = 2, ACTIONS(1315), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18230] = 2, + [17370] = 2, ACTIONS(1317), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18238] = 2, + [17378] = 2, ACTIONS(1319), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18246] = 2, + [17386] = 2, ACTIONS(1321), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18254] = 2, + [17394] = 2, ACTIONS(1323), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18262] = 2, + [17402] = 2, ACTIONS(1325), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18270] = 2, + [17410] = 2, ACTIONS(1327), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18278] = 2, + [17418] = 2, ACTIONS(1329), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18286] = 2, + [17426] = 2, ACTIONS(1331), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18294] = 2, + [17434] = 2, ACTIONS(1333), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18302] = 2, - ACTIONS(525), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18310] = 2, + [17442] = 2, ACTIONS(1335), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18318] = 2, - ACTIONS(1337), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18326] = 2, - ACTIONS(1339), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18334] = 2, - ACTIONS(1341), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18342] = 2, - ACTIONS(1343), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18350] = 2, - ACTIONS(1345), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18358] = 2, - ACTIONS(1347), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18366] = 2, - ACTIONS(1349), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18374] = 2, - ACTIONS(547), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18382] = 2, - ACTIONS(1351), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18390] = 2, - ACTIONS(1353), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18398] = 2, - ACTIONS(1355), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18406] = 2, - ACTIONS(1357), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18414] = 2, - ACTIONS(1359), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18422] = 2, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18430] = 2, - ACTIONS(1363), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18438] = 2, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18446] = 2, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18454] = 2, - ACTIONS(1369), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18462] = 2, - ACTIONS(1371), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18470] = 2, - ACTIONS(1373), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18478] = 2, + [17450] = 2, ACTIONS(545), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18486] = 2, - ACTIONS(1375), 1, + [17458] = 2, + ACTIONS(664), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17466] = 2, + ACTIONS(680), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17474] = 2, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17482] = 2, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17490] = 2, + ACTIONS(1341), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17498] = 2, + ACTIONS(1343), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17506] = 2, + ACTIONS(1345), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17514] = 2, + ACTIONS(1347), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17522] = 2, + ACTIONS(1349), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18494] = 2, - ACTIONS(1377), 1, + [17530] = 2, + ACTIONS(1351), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18502] = 2, + [17538] = 2, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17546] = 2, + ACTIONS(537), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17554] = 2, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17562] = 2, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17570] = 2, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17578] = 2, + ACTIONS(672), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17586] = 2, + ACTIONS(1361), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17594] = 2, + ACTIONS(1363), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17602] = 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17610] = 2, + ACTIONS(1367), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17618] = 2, + ACTIONS(533), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17626] = 2, + ACTIONS(549), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17634] = 2, + ACTIONS(531), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17642] = 2, + ACTIONS(1369), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17650] = 2, + ACTIONS(1371), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17658] = 2, + ACTIONS(1373), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17666] = 2, + ACTIONS(1375), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17674] = 2, + ACTIONS(1377), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17682] = 2, ACTIONS(1379), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18510] = 2, + [17690] = 2, ACTIONS(1381), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18518] = 2, + [17698] = 2, ACTIONS(1383), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18526] = 2, + [17706] = 2, ACTIONS(1385), 1, - aux_sym_else_command_token1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18534] = 2, + [17714] = 2, ACTIONS(1387), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18542] = 2, + [17722] = 2, ACTIONS(1389), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18550] = 2, + [17730] = 2, ACTIONS(1391), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18558] = 2, + [17738] = 2, ACTIONS(1393), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18566] = 2, + [17746] = 2, ACTIONS(1395), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18574] = 2, + [17754] = 2, ACTIONS(1397), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18582] = 2, + [17762] = 2, ACTIONS(1399), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18590] = 2, - ACTIONS(498), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18598] = 2, + [17770] = 2, ACTIONS(1401), 1, - anon_sym_RPAREN, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18606] = 2, + [17778] = 2, ACTIONS(1403), 1, - anon_sym_DQUOTE, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18614] = 2, + [17786] = 2, ACTIONS(1405), 1, - anon_sym_RBRACE, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18622] = 2, + [17794] = 2, ACTIONS(1407), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17802] = 2, + ACTIONS(1409), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18630] = 2, - ACTIONS(1409), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18638] = 2, + [17810] = 2, ACTIONS(1411), 1, - aux_sym_else_command_token1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18646] = 2, + [17818] = 2, ACTIONS(1413), 1, - aux_sym_else_command_token1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18654] = 2, + [17826] = 2, ACTIONS(1415), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18662] = 2, + [17834] = 2, ACTIONS(1417), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18670] = 2, - ACTIONS(720), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18678] = 2, - ACTIONS(712), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18686] = 2, - ACTIONS(736), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18694] = 2, - ACTIONS(720), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18702] = 2, - ACTIONS(712), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18710] = 2, - ACTIONS(736), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18718] = 2, + [17842] = 2, ACTIONS(1419), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18726] = 2, + [17850] = 2, ACTIONS(1421), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18734] = 2, + [17858] = 2, ACTIONS(1423), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18742] = 2, + [17866] = 2, ACTIONS(1425), 1, - aux_sym_else_command_token1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18750] = 2, + [17874] = 2, ACTIONS(1427), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18758] = 2, + [17882] = 2, ACTIONS(1429), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18766] = 2, + [17890] = 2, ACTIONS(1431), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18774] = 2, + [17898] = 2, ACTIONS(1433), 1, aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18782] = 2, + [17906] = 2, + ACTIONS(535), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17914] = 2, ACTIONS(1435), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18790] = 2, + [17922] = 2, ACTIONS(1437), 1, - aux_sym_else_command_token1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18798] = 2, + [17930] = 2, ACTIONS(1439), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18806] = 2, + [17938] = 2, ACTIONS(1441), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18814] = 2, + [17946] = 2, ACTIONS(1443), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18822] = 2, - ACTIONS(1445), 1, - aux_sym_else_command_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18830] = 2, - ACTIONS(1447), 1, + [17954] = 2, + ACTIONS(672), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18838] = 2, + [17962] = 2, + ACTIONS(680), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17970] = 2, + ACTIONS(664), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17978] = 2, + ACTIONS(1445), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17986] = 2, + ACTIONS(1447), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17994] = 2, ACTIONS(1449), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18846] = 2, + [18002] = 2, ACTIONS(1451), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18854] = 2, + [18010] = 2, ACTIONS(1453), 1, - anon_sym_LBRACE, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18862] = 2, + [18018] = 2, ACTIONS(1455), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18870] = 2, + [18026] = 2, ACTIONS(1457), 1, - aux_sym_else_command_token1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18878] = 2, + [18034] = 2, ACTIONS(1459), 1, - aux_sym_else_command_token1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18886] = 2, + [18042] = 2, ACTIONS(1461), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18894] = 2, + [18050] = 2, ACTIONS(1463), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18902] = 2, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18910] = 2, - ACTIONS(1467), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18918] = 2, - ACTIONS(1469), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [18926] = 2, - ACTIONS(523), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18934] = 2, - ACTIONS(529), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18942] = 2, - ACTIONS(1471), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18950] = 2, - ACTIONS(1473), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18958] = 2, - ACTIONS(1475), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18966] = 2, - ACTIONS(1477), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18974] = 2, - ACTIONS(1479), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18982] = 2, - ACTIONS(1481), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18990] = 2, - ACTIONS(1483), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [18998] = 2, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [19006] = 2, - ACTIONS(1487), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [19014] = 2, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { @@ -16666,664 +15999,669 @@ static const uint32_t ts_small_parse_table_map[] = { [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)] = 9371, - [SMALL_STATE(163)] = 9426, - [SMALL_STATE(164)] = 9479, - [SMALL_STATE(165)] = 9534, - [SMALL_STATE(166)] = 9587, - [SMALL_STATE(167)] = 9640, - [SMALL_STATE(168)] = 9693, - [SMALL_STATE(169)] = 9746, - [SMALL_STATE(170)] = 9799, - [SMALL_STATE(171)] = 9852, - [SMALL_STATE(172)] = 9907, - [SMALL_STATE(173)] = 9960, - [SMALL_STATE(174)] = 10013, - [SMALL_STATE(175)] = 10066, - [SMALL_STATE(176)] = 10121, - [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)] = 12026, - [SMALL_STATE(217)] = 12066, - [SMALL_STATE(218)] = 12106, - [SMALL_STATE(219)] = 12146, - [SMALL_STATE(220)] = 12186, - [SMALL_STATE(221)] = 12226, - [SMALL_STATE(222)] = 12266, - [SMALL_STATE(223)] = 12306, - [SMALL_STATE(224)] = 12346, - [SMALL_STATE(225)] = 12386, - [SMALL_STATE(226)] = 12426, - [SMALL_STATE(227)] = 12466, - [SMALL_STATE(228)] = 12506, - [SMALL_STATE(229)] = 12546, - [SMALL_STATE(230)] = 12586, - [SMALL_STATE(231)] = 12626, - [SMALL_STATE(232)] = 12666, - [SMALL_STATE(233)] = 12688, - [SMALL_STATE(234)] = 12710, - [SMALL_STATE(235)] = 12732, - [SMALL_STATE(236)] = 12754, - [SMALL_STATE(237)] = 12776, - [SMALL_STATE(238)] = 12798, - [SMALL_STATE(239)] = 12820, - [SMALL_STATE(240)] = 12842, - [SMALL_STATE(241)] = 12861, - [SMALL_STATE(242)] = 12878, - [SMALL_STATE(243)] = 12897, - [SMALL_STATE(244)] = 12916, - [SMALL_STATE(245)] = 12935, - [SMALL_STATE(246)] = 12954, - [SMALL_STATE(247)] = 12973, - [SMALL_STATE(248)] = 12992, - [SMALL_STATE(249)] = 13011, - [SMALL_STATE(250)] = 13030, - [SMALL_STATE(251)] = 13049, - [SMALL_STATE(252)] = 13068, - [SMALL_STATE(253)] = 13087, - [SMALL_STATE(254)] = 13106, - [SMALL_STATE(255)] = 13125, - [SMALL_STATE(256)] = 13144, - [SMALL_STATE(257)] = 13163, - [SMALL_STATE(258)] = 13182, - [SMALL_STATE(259)] = 13201, - [SMALL_STATE(260)] = 13220, - [SMALL_STATE(261)] = 13239, - [SMALL_STATE(262)] = 13258, - [SMALL_STATE(263)] = 13277, - [SMALL_STATE(264)] = 13296, - [SMALL_STATE(265)] = 13315, - [SMALL_STATE(266)] = 13334, - [SMALL_STATE(267)] = 13353, - [SMALL_STATE(268)] = 13370, - [SMALL_STATE(269)] = 13387, - [SMALL_STATE(270)] = 13406, - [SMALL_STATE(271)] = 13425, - [SMALL_STATE(272)] = 13444, - [SMALL_STATE(273)] = 13463, - [SMALL_STATE(274)] = 13482, - [SMALL_STATE(275)] = 13501, - [SMALL_STATE(276)] = 13518, - [SMALL_STATE(277)] = 13537, - [SMALL_STATE(278)] = 13556, - [SMALL_STATE(279)] = 13575, - [SMALL_STATE(280)] = 13594, - [SMALL_STATE(281)] = 13613, - [SMALL_STATE(282)] = 13632, - [SMALL_STATE(283)] = 13651, - [SMALL_STATE(284)] = 13670, - [SMALL_STATE(285)] = 13689, - [SMALL_STATE(286)] = 13708, - [SMALL_STATE(287)] = 13727, - [SMALL_STATE(288)] = 13746, - [SMALL_STATE(289)] = 13763, - [SMALL_STATE(290)] = 13782, - [SMALL_STATE(291)] = 13801, - [SMALL_STATE(292)] = 13820, - [SMALL_STATE(293)] = 13839, - [SMALL_STATE(294)] = 13858, - [SMALL_STATE(295)] = 13877, - [SMALL_STATE(296)] = 13896, - [SMALL_STATE(297)] = 13915, - [SMALL_STATE(298)] = 13934, - [SMALL_STATE(299)] = 13953, - [SMALL_STATE(300)] = 13972, - [SMALL_STATE(301)] = 13989, - [SMALL_STATE(302)] = 14006, - [SMALL_STATE(303)] = 14023, - [SMALL_STATE(304)] = 14040, - [SMALL_STATE(305)] = 14057, - [SMALL_STATE(306)] = 14074, - [SMALL_STATE(307)] = 14091, - [SMALL_STATE(308)] = 14108, - [SMALL_STATE(309)] = 14125, - [SMALL_STATE(310)] = 14142, - [SMALL_STATE(311)] = 14159, - [SMALL_STATE(312)] = 14176, - [SMALL_STATE(313)] = 14193, - [SMALL_STATE(314)] = 14210, - [SMALL_STATE(315)] = 14227, - [SMALL_STATE(316)] = 14244, - [SMALL_STATE(317)] = 14261, - [SMALL_STATE(318)] = 14278, - [SMALL_STATE(319)] = 14295, - [SMALL_STATE(320)] = 14312, - [SMALL_STATE(321)] = 14329, - [SMALL_STATE(322)] = 14346, - [SMALL_STATE(323)] = 14363, - [SMALL_STATE(324)] = 14380, - [SMALL_STATE(325)] = 14397, - [SMALL_STATE(326)] = 14414, - [SMALL_STATE(327)] = 14431, - [SMALL_STATE(328)] = 14448, - [SMALL_STATE(329)] = 14465, - [SMALL_STATE(330)] = 14482, - [SMALL_STATE(331)] = 14499, - [SMALL_STATE(332)] = 14516, - [SMALL_STATE(333)] = 14533, - [SMALL_STATE(334)] = 14550, - [SMALL_STATE(335)] = 14567, - [SMALL_STATE(336)] = 14584, - [SMALL_STATE(337)] = 14601, - [SMALL_STATE(338)] = 14618, - [SMALL_STATE(339)] = 14635, - [SMALL_STATE(340)] = 14652, - [SMALL_STATE(341)] = 14669, - [SMALL_STATE(342)] = 14686, - [SMALL_STATE(343)] = 14703, - [SMALL_STATE(344)] = 14720, - [SMALL_STATE(345)] = 14737, - [SMALL_STATE(346)] = 14754, - [SMALL_STATE(347)] = 14771, - [SMALL_STATE(348)] = 14788, - [SMALL_STATE(349)] = 14805, - [SMALL_STATE(350)] = 14822, - [SMALL_STATE(351)] = 14839, - [SMALL_STATE(352)] = 14856, - [SMALL_STATE(353)] = 14873, - [SMALL_STATE(354)] = 14890, - [SMALL_STATE(355)] = 14907, - [SMALL_STATE(356)] = 14924, - [SMALL_STATE(357)] = 14941, - [SMALL_STATE(358)] = 14958, - [SMALL_STATE(359)] = 14975, - [SMALL_STATE(360)] = 14992, - [SMALL_STATE(361)] = 15009, - [SMALL_STATE(362)] = 15026, - [SMALL_STATE(363)] = 15043, - [SMALL_STATE(364)] = 15060, - [SMALL_STATE(365)] = 15077, - [SMALL_STATE(366)] = 15094, - [SMALL_STATE(367)] = 15111, - [SMALL_STATE(368)] = 15128, - [SMALL_STATE(369)] = 15145, - [SMALL_STATE(370)] = 15162, - [SMALL_STATE(371)] = 15179, - [SMALL_STATE(372)] = 15196, - [SMALL_STATE(373)] = 15213, - [SMALL_STATE(374)] = 15230, - [SMALL_STATE(375)] = 15247, - [SMALL_STATE(376)] = 15264, - [SMALL_STATE(377)] = 15281, - [SMALL_STATE(378)] = 15298, - [SMALL_STATE(379)] = 15315, - [SMALL_STATE(380)] = 15332, - [SMALL_STATE(381)] = 15349, - [SMALL_STATE(382)] = 15366, - [SMALL_STATE(383)] = 15383, - [SMALL_STATE(384)] = 15400, - [SMALL_STATE(385)] = 15417, - [SMALL_STATE(386)] = 15434, - [SMALL_STATE(387)] = 15451, - [SMALL_STATE(388)] = 15468, - [SMALL_STATE(389)] = 15485, - [SMALL_STATE(390)] = 15502, - [SMALL_STATE(391)] = 15519, - [SMALL_STATE(392)] = 15536, - [SMALL_STATE(393)] = 15553, - [SMALL_STATE(394)] = 15570, - [SMALL_STATE(395)] = 15587, - [SMALL_STATE(396)] = 15604, - [SMALL_STATE(397)] = 15621, - [SMALL_STATE(398)] = 15638, - [SMALL_STATE(399)] = 15655, - [SMALL_STATE(400)] = 15672, - [SMALL_STATE(401)] = 15689, - [SMALL_STATE(402)] = 15706, - [SMALL_STATE(403)] = 15723, - [SMALL_STATE(404)] = 15740, - [SMALL_STATE(405)] = 15757, - [SMALL_STATE(406)] = 15774, - [SMALL_STATE(407)] = 15791, - [SMALL_STATE(408)] = 15808, - [SMALL_STATE(409)] = 15825, - [SMALL_STATE(410)] = 15842, - [SMALL_STATE(411)] = 15859, - [SMALL_STATE(412)] = 15876, - [SMALL_STATE(413)] = 15893, - [SMALL_STATE(414)] = 15910, - [SMALL_STATE(415)] = 15927, - [SMALL_STATE(416)] = 15944, - [SMALL_STATE(417)] = 15961, - [SMALL_STATE(418)] = 15978, - [SMALL_STATE(419)] = 15995, - [SMALL_STATE(420)] = 16012, - [SMALL_STATE(421)] = 16029, - [SMALL_STATE(422)] = 16046, - [SMALL_STATE(423)] = 16063, - [SMALL_STATE(424)] = 16080, - [SMALL_STATE(425)] = 16097, - [SMALL_STATE(426)] = 16114, - [SMALL_STATE(427)] = 16131, - [SMALL_STATE(428)] = 16148, - [SMALL_STATE(429)] = 16165, - [SMALL_STATE(430)] = 16182, - [SMALL_STATE(431)] = 16199, - [SMALL_STATE(432)] = 16216, - [SMALL_STATE(433)] = 16233, - [SMALL_STATE(434)] = 16250, - [SMALL_STATE(435)] = 16267, - [SMALL_STATE(436)] = 16284, - [SMALL_STATE(437)] = 16301, - [SMALL_STATE(438)] = 16318, - [SMALL_STATE(439)] = 16335, - [SMALL_STATE(440)] = 16352, - [SMALL_STATE(441)] = 16369, - [SMALL_STATE(442)] = 16386, - [SMALL_STATE(443)] = 16403, - [SMALL_STATE(444)] = 16420, - [SMALL_STATE(445)] = 16437, - [SMALL_STATE(446)] = 16454, - [SMALL_STATE(447)] = 16471, - [SMALL_STATE(448)] = 16488, - [SMALL_STATE(449)] = 16505, - [SMALL_STATE(450)] = 16522, - [SMALL_STATE(451)] = 16539, - [SMALL_STATE(452)] = 16556, - [SMALL_STATE(453)] = 16573, - [SMALL_STATE(454)] = 16590, - [SMALL_STATE(455)] = 16607, - [SMALL_STATE(456)] = 16624, - [SMALL_STATE(457)] = 16641, - [SMALL_STATE(458)] = 16658, - [SMALL_STATE(459)] = 16675, - [SMALL_STATE(460)] = 16692, - [SMALL_STATE(461)] = 16709, - [SMALL_STATE(462)] = 16726, - [SMALL_STATE(463)] = 16740, - [SMALL_STATE(464)] = 16754, - [SMALL_STATE(465)] = 16768, - [SMALL_STATE(466)] = 16782, - [SMALL_STATE(467)] = 16796, - [SMALL_STATE(468)] = 16810, - [SMALL_STATE(469)] = 16824, - [SMALL_STATE(470)] = 16838, - [SMALL_STATE(471)] = 16852, - [SMALL_STATE(472)] = 16866, - [SMALL_STATE(473)] = 16880, - [SMALL_STATE(474)] = 16894, - [SMALL_STATE(475)] = 16908, - [SMALL_STATE(476)] = 16922, - [SMALL_STATE(477)] = 16936, - [SMALL_STATE(478)] = 16950, - [SMALL_STATE(479)] = 16964, - [SMALL_STATE(480)] = 16978, - [SMALL_STATE(481)] = 16992, - [SMALL_STATE(482)] = 17006, - [SMALL_STATE(483)] = 17020, - [SMALL_STATE(484)] = 17034, - [SMALL_STATE(485)] = 17048, - [SMALL_STATE(486)] = 17062, - [SMALL_STATE(487)] = 17076, - [SMALL_STATE(488)] = 17090, - [SMALL_STATE(489)] = 17104, - [SMALL_STATE(490)] = 17118, - [SMALL_STATE(491)] = 17132, - [SMALL_STATE(492)] = 17146, - [SMALL_STATE(493)] = 17160, - [SMALL_STATE(494)] = 17174, - [SMALL_STATE(495)] = 17188, - [SMALL_STATE(496)] = 17202, - [SMALL_STATE(497)] = 17216, - [SMALL_STATE(498)] = 17230, - [SMALL_STATE(499)] = 17244, - [SMALL_STATE(500)] = 17258, - [SMALL_STATE(501)] = 17272, - [SMALL_STATE(502)] = 17286, - [SMALL_STATE(503)] = 17300, - [SMALL_STATE(504)] = 17314, - [SMALL_STATE(505)] = 17328, - [SMALL_STATE(506)] = 17342, - [SMALL_STATE(507)] = 17356, - [SMALL_STATE(508)] = 17370, - [SMALL_STATE(509)] = 17384, - [SMALL_STATE(510)] = 17398, - [SMALL_STATE(511)] = 17412, - [SMALL_STATE(512)] = 17426, - [SMALL_STATE(513)] = 17440, - [SMALL_STATE(514)] = 17454, - [SMALL_STATE(515)] = 17468, - [SMALL_STATE(516)] = 17482, - [SMALL_STATE(517)] = 17496, - [SMALL_STATE(518)] = 17510, - [SMALL_STATE(519)] = 17524, - [SMALL_STATE(520)] = 17538, - [SMALL_STATE(521)] = 17552, - [SMALL_STATE(522)] = 17566, - [SMALL_STATE(523)] = 17580, - [SMALL_STATE(524)] = 17594, - [SMALL_STATE(525)] = 17608, - [SMALL_STATE(526)] = 17622, - [SMALL_STATE(527)] = 17636, - [SMALL_STATE(528)] = 17650, - [SMALL_STATE(529)] = 17664, - [SMALL_STATE(530)] = 17678, - [SMALL_STATE(531)] = 17692, - [SMALL_STATE(532)] = 17706, - [SMALL_STATE(533)] = 17720, - [SMALL_STATE(534)] = 17734, - [SMALL_STATE(535)] = 17748, - [SMALL_STATE(536)] = 17762, - [SMALL_STATE(537)] = 17776, - [SMALL_STATE(538)] = 17790, - [SMALL_STATE(539)] = 17804, - [SMALL_STATE(540)] = 17818, - [SMALL_STATE(541)] = 17832, - [SMALL_STATE(542)] = 17846, - [SMALL_STATE(543)] = 17860, - [SMALL_STATE(544)] = 17874, - [SMALL_STATE(545)] = 17888, - [SMALL_STATE(546)] = 17902, - [SMALL_STATE(547)] = 17916, - [SMALL_STATE(548)] = 17930, - [SMALL_STATE(549)] = 17944, - [SMALL_STATE(550)] = 17955, - [SMALL_STATE(551)] = 17966, - [SMALL_STATE(552)] = 17977, - [SMALL_STATE(553)] = 17988, - [SMALL_STATE(554)] = 17999, - [SMALL_STATE(555)] = 18010, - [SMALL_STATE(556)] = 18021, - [SMALL_STATE(557)] = 18032, - [SMALL_STATE(558)] = 18043, - [SMALL_STATE(559)] = 18054, - [SMALL_STATE(560)] = 18065, - [SMALL_STATE(561)] = 18076, - [SMALL_STATE(562)] = 18087, - [SMALL_STATE(563)] = 18098, - [SMALL_STATE(564)] = 18109, - [SMALL_STATE(565)] = 18120, - [SMALL_STATE(566)] = 18131, - [SMALL_STATE(567)] = 18142, - [SMALL_STATE(568)] = 18153, - [SMALL_STATE(569)] = 18164, - [SMALL_STATE(570)] = 18175, - [SMALL_STATE(571)] = 18186, - [SMALL_STATE(572)] = 18197, - [SMALL_STATE(573)] = 18208, - [SMALL_STATE(574)] = 18219, - [SMALL_STATE(575)] = 18230, - [SMALL_STATE(576)] = 18238, - [SMALL_STATE(577)] = 18246, - [SMALL_STATE(578)] = 18254, - [SMALL_STATE(579)] = 18262, - [SMALL_STATE(580)] = 18270, - [SMALL_STATE(581)] = 18278, - [SMALL_STATE(582)] = 18286, - [SMALL_STATE(583)] = 18294, - [SMALL_STATE(584)] = 18302, - [SMALL_STATE(585)] = 18310, - [SMALL_STATE(586)] = 18318, - [SMALL_STATE(587)] = 18326, - [SMALL_STATE(588)] = 18334, - [SMALL_STATE(589)] = 18342, - [SMALL_STATE(590)] = 18350, - [SMALL_STATE(591)] = 18358, - [SMALL_STATE(592)] = 18366, - [SMALL_STATE(593)] = 18374, - [SMALL_STATE(594)] = 18382, - [SMALL_STATE(595)] = 18390, - [SMALL_STATE(596)] = 18398, - [SMALL_STATE(597)] = 18406, - [SMALL_STATE(598)] = 18414, - [SMALL_STATE(599)] = 18422, - [SMALL_STATE(600)] = 18430, - [SMALL_STATE(601)] = 18438, - [SMALL_STATE(602)] = 18446, - [SMALL_STATE(603)] = 18454, - [SMALL_STATE(604)] = 18462, - [SMALL_STATE(605)] = 18470, - [SMALL_STATE(606)] = 18478, - [SMALL_STATE(607)] = 18486, - [SMALL_STATE(608)] = 18494, - [SMALL_STATE(609)] = 18502, - [SMALL_STATE(610)] = 18510, - [SMALL_STATE(611)] = 18518, - [SMALL_STATE(612)] = 18526, - [SMALL_STATE(613)] = 18534, - [SMALL_STATE(614)] = 18542, - [SMALL_STATE(615)] = 18550, - [SMALL_STATE(616)] = 18558, - [SMALL_STATE(617)] = 18566, - [SMALL_STATE(618)] = 18574, - [SMALL_STATE(619)] = 18582, - [SMALL_STATE(620)] = 18590, - [SMALL_STATE(621)] = 18598, - [SMALL_STATE(622)] = 18606, - [SMALL_STATE(623)] = 18614, - [SMALL_STATE(624)] = 18622, - [SMALL_STATE(625)] = 18630, - [SMALL_STATE(626)] = 18638, - [SMALL_STATE(627)] = 18646, - [SMALL_STATE(628)] = 18654, - [SMALL_STATE(629)] = 18662, - [SMALL_STATE(630)] = 18670, - [SMALL_STATE(631)] = 18678, - [SMALL_STATE(632)] = 18686, - [SMALL_STATE(633)] = 18694, - [SMALL_STATE(634)] = 18702, - [SMALL_STATE(635)] = 18710, - [SMALL_STATE(636)] = 18718, - [SMALL_STATE(637)] = 18726, - [SMALL_STATE(638)] = 18734, - [SMALL_STATE(639)] = 18742, - [SMALL_STATE(640)] = 18750, - [SMALL_STATE(641)] = 18758, - [SMALL_STATE(642)] = 18766, - [SMALL_STATE(643)] = 18774, - [SMALL_STATE(644)] = 18782, - [SMALL_STATE(645)] = 18790, - [SMALL_STATE(646)] = 18798, - [SMALL_STATE(647)] = 18806, - [SMALL_STATE(648)] = 18814, - [SMALL_STATE(649)] = 18822, - [SMALL_STATE(650)] = 18830, - [SMALL_STATE(651)] = 18838, - [SMALL_STATE(652)] = 18846, - [SMALL_STATE(653)] = 18854, - [SMALL_STATE(654)] = 18862, - [SMALL_STATE(655)] = 18870, - [SMALL_STATE(656)] = 18878, - [SMALL_STATE(657)] = 18886, - [SMALL_STATE(658)] = 18894, - [SMALL_STATE(659)] = 18902, - [SMALL_STATE(660)] = 18910, - [SMALL_STATE(661)] = 18918, - [SMALL_STATE(662)] = 18926, - [SMALL_STATE(663)] = 18934, - [SMALL_STATE(664)] = 18942, - [SMALL_STATE(665)] = 18950, - [SMALL_STATE(666)] = 18958, - [SMALL_STATE(667)] = 18966, - [SMALL_STATE(668)] = 18974, - [SMALL_STATE(669)] = 18982, - [SMALL_STATE(670)] = 18990, - [SMALL_STATE(671)] = 18998, - [SMALL_STATE(672)] = 19006, - [SMALL_STATE(673)] = 19014, + [SMALL_STATE(16)] = 907, + [SMALL_STATE(17)] = 959, + [SMALL_STATE(18)] = 1017, + [SMALL_STATE(19)] = 1075, + [SMALL_STATE(20)] = 1127, + [SMALL_STATE(21)] = 1185, + [SMALL_STATE(22)] = 1237, + [SMALL_STATE(23)] = 1295, + [SMALL_STATE(24)] = 1347, + [SMALL_STATE(25)] = 1405, + [SMALL_STATE(26)] = 1457, + [SMALL_STATE(27)] = 1515, + [SMALL_STATE(28)] = 1567, + [SMALL_STATE(29)] = 1619, + [SMALL_STATE(30)] = 1671, + [SMALL_STATE(31)] = 1729, + [SMALL_STATE(32)] = 1787, + [SMALL_STATE(33)] = 1845, + [SMALL_STATE(34)] = 1903, + [SMALL_STATE(35)] = 1961, + [SMALL_STATE(36)] = 2013, + [SMALL_STATE(37)] = 2065, + [SMALL_STATE(38)] = 2123, + [SMALL_STATE(39)] = 2181, + [SMALL_STATE(40)] = 2233, + [SMALL_STATE(41)] = 2291, + [SMALL_STATE(42)] = 2343, + [SMALL_STATE(43)] = 2395, + [SMALL_STATE(44)] = 2453, + [SMALL_STATE(45)] = 2511, + [SMALL_STATE(46)] = 2563, + [SMALL_STATE(47)] = 2621, + [SMALL_STATE(48)] = 2679, + [SMALL_STATE(49)] = 2737, + [SMALL_STATE(50)] = 2789, + [SMALL_STATE(51)] = 2841, + [SMALL_STATE(52)] = 2893, + [SMALL_STATE(53)] = 2945, + [SMALL_STATE(54)] = 3003, + [SMALL_STATE(55)] = 3061, + [SMALL_STATE(56)] = 3113, + [SMALL_STATE(57)] = 3165, + [SMALL_STATE(58)] = 3223, + [SMALL_STATE(59)] = 3281, + [SMALL_STATE(60)] = 3333, + [SMALL_STATE(61)] = 3385, + [SMALL_STATE(62)] = 3437, + [SMALL_STATE(63)] = 3489, + [SMALL_STATE(64)] = 3541, + [SMALL_STATE(65)] = 3599, + [SMALL_STATE(66)] = 3651, + [SMALL_STATE(67)] = 3703, + [SMALL_STATE(68)] = 3761, + [SMALL_STATE(69)] = 3813, + [SMALL_STATE(70)] = 3865, + [SMALL_STATE(71)] = 3923, + [SMALL_STATE(72)] = 3975, + [SMALL_STATE(73)] = 4027, + [SMALL_STATE(74)] = 4079, + [SMALL_STATE(75)] = 4131, + [SMALL_STATE(76)] = 4183, + [SMALL_STATE(77)] = 4235, + [SMALL_STATE(78)] = 4287, + [SMALL_STATE(79)] = 4339, + [SMALL_STATE(80)] = 4391, + [SMALL_STATE(81)] = 4449, + [SMALL_STATE(82)] = 4501, + [SMALL_STATE(83)] = 4553, + [SMALL_STATE(84)] = 4605, + [SMALL_STATE(85)] = 4657, + [SMALL_STATE(86)] = 4709, + [SMALL_STATE(87)] = 4761, + [SMALL_STATE(88)] = 4813, + [SMALL_STATE(89)] = 4865, + [SMALL_STATE(90)] = 4917, + [SMALL_STATE(91)] = 4975, + [SMALL_STATE(92)] = 5033, + [SMALL_STATE(93)] = 5091, + [SMALL_STATE(94)] = 5149, + [SMALL_STATE(95)] = 5207, + [SMALL_STATE(96)] = 5259, + [SMALL_STATE(97)] = 5311, + [SMALL_STATE(98)] = 5363, + [SMALL_STATE(99)] = 5415, + [SMALL_STATE(100)] = 5467, + [SMALL_STATE(101)] = 5519, + [SMALL_STATE(102)] = 5571, + [SMALL_STATE(103)] = 5623, + [SMALL_STATE(104)] = 5681, + [SMALL_STATE(105)] = 5733, + [SMALL_STATE(106)] = 5791, + [SMALL_STATE(107)] = 5843, + [SMALL_STATE(108)] = 5901, + [SMALL_STATE(109)] = 5953, + [SMALL_STATE(110)] = 6011, + [SMALL_STATE(111)] = 6063, + [SMALL_STATE(112)] = 6115, + [SMALL_STATE(113)] = 6167, + [SMALL_STATE(114)] = 6219, + [SMALL_STATE(115)] = 6271, + [SMALL_STATE(116)] = 6323, + [SMALL_STATE(117)] = 6375, + [SMALL_STATE(118)] = 6427, + [SMALL_STATE(119)] = 6479, + [SMALL_STATE(120)] = 6531, + [SMALL_STATE(121)] = 6583, + [SMALL_STATE(122)] = 6635, + [SMALL_STATE(123)] = 6687, + [SMALL_STATE(124)] = 6739, + [SMALL_STATE(125)] = 6791, + [SMALL_STATE(126)] = 6843, + [SMALL_STATE(127)] = 6895, + [SMALL_STATE(128)] = 6947, + [SMALL_STATE(129)] = 6999, + [SMALL_STATE(130)] = 7051, + [SMALL_STATE(131)] = 7103, + [SMALL_STATE(132)] = 7155, + [SMALL_STATE(133)] = 7207, + [SMALL_STATE(134)] = 7259, + [SMALL_STATE(135)] = 7311, + [SMALL_STATE(136)] = 7363, + [SMALL_STATE(137)] = 7415, + [SMALL_STATE(138)] = 7473, + [SMALL_STATE(139)] = 7525, + [SMALL_STATE(140)] = 7577, + [SMALL_STATE(141)] = 7629, + [SMALL_STATE(142)] = 7681, + [SMALL_STATE(143)] = 7739, + [SMALL_STATE(144)] = 7797, + [SMALL_STATE(145)] = 7849, + [SMALL_STATE(146)] = 7907, + [SMALL_STATE(147)] = 7965, + [SMALL_STATE(148)] = 8023, + [SMALL_STATE(149)] = 8075, + [SMALL_STATE(150)] = 8133, + [SMALL_STATE(151)] = 8191, + [SMALL_STATE(152)] = 8243, + [SMALL_STATE(153)] = 8301, + [SMALL_STATE(154)] = 8359, + [SMALL_STATE(155)] = 8417, + [SMALL_STATE(156)] = 8469, + [SMALL_STATE(157)] = 8527, + [SMALL_STATE(158)] = 8579, + [SMALL_STATE(159)] = 8631, + [SMALL_STATE(160)] = 8683, + [SMALL_STATE(161)] = 8738, + [SMALL_STATE(162)] = 8793, + [SMALL_STATE(163)] = 8848, + [SMALL_STATE(164)] = 8903, + [SMALL_STATE(165)] = 8958, + [SMALL_STATE(166)] = 9013, + [SMALL_STATE(167)] = 9060, + [SMALL_STATE(168)] = 9107, + [SMALL_STATE(169)] = 9154, + [SMALL_STATE(170)] = 9201, + [SMALL_STATE(171)] = 9248, + [SMALL_STATE(172)] = 9295, + [SMALL_STATE(173)] = 9342, + [SMALL_STATE(174)] = 9389, + [SMALL_STATE(175)] = 9436, + [SMALL_STATE(176)] = 9483, + [SMALL_STATE(177)] = 9530, + [SMALL_STATE(178)] = 9577, + [SMALL_STATE(179)] = 9621, + [SMALL_STATE(180)] = 9665, + [SMALL_STATE(181)] = 9709, + [SMALL_STATE(182)] = 9753, + [SMALL_STATE(183)] = 9797, + [SMALL_STATE(184)] = 9841, + [SMALL_STATE(185)] = 9885, + [SMALL_STATE(186)] = 9929, + [SMALL_STATE(187)] = 9973, + [SMALL_STATE(188)] = 10017, + [SMALL_STATE(189)] = 10061, + [SMALL_STATE(190)] = 10105, + [SMALL_STATE(191)] = 10149, + [SMALL_STATE(192)] = 10193, + [SMALL_STATE(193)] = 10237, + [SMALL_STATE(194)] = 10281, + [SMALL_STATE(195)] = 10325, + [SMALL_STATE(196)] = 10369, + [SMALL_STATE(197)] = 10413, + [SMALL_STATE(198)] = 10457, + [SMALL_STATE(199)] = 10501, + [SMALL_STATE(200)] = 10545, + [SMALL_STATE(201)] = 10589, + [SMALL_STATE(202)] = 10633, + [SMALL_STATE(203)] = 10677, + [SMALL_STATE(204)] = 10721, + [SMALL_STATE(205)] = 10758, + [SMALL_STATE(206)] = 10795, + [SMALL_STATE(207)] = 10832, + [SMALL_STATE(208)] = 10869, + [SMALL_STATE(209)] = 10906, + [SMALL_STATE(210)] = 10940, + [SMALL_STATE(211)] = 10974, + [SMALL_STATE(212)] = 11008, + [SMALL_STATE(213)] = 11042, + [SMALL_STATE(214)] = 11076, + [SMALL_STATE(215)] = 11110, + [SMALL_STATE(216)] = 11144, + [SMALL_STATE(217)] = 11178, + [SMALL_STATE(218)] = 11212, + [SMALL_STATE(219)] = 11246, + [SMALL_STATE(220)] = 11280, + [SMALL_STATE(221)] = 11314, + [SMALL_STATE(222)] = 11348, + [SMALL_STATE(223)] = 11382, + [SMALL_STATE(224)] = 11416, + [SMALL_STATE(225)] = 11450, + [SMALL_STATE(226)] = 11484, + [SMALL_STATE(227)] = 11518, + [SMALL_STATE(228)] = 11552, + [SMALL_STATE(229)] = 11586, + [SMALL_STATE(230)] = 11620, + [SMALL_STATE(231)] = 11654, + [SMALL_STATE(232)] = 11688, + [SMALL_STATE(233)] = 11708, + [SMALL_STATE(234)] = 11728, + [SMALL_STATE(235)] = 11748, + [SMALL_STATE(236)] = 11768, + [SMALL_STATE(237)] = 11788, + [SMALL_STATE(238)] = 11808, + [SMALL_STATE(239)] = 11828, + [SMALL_STATE(240)] = 11848, + [SMALL_STATE(241)] = 11867, + [SMALL_STATE(242)] = 11886, + [SMALL_STATE(243)] = 11905, + [SMALL_STATE(244)] = 11924, + [SMALL_STATE(245)] = 11943, + [SMALL_STATE(246)] = 11962, + [SMALL_STATE(247)] = 11981, + [SMALL_STATE(248)] = 12000, + [SMALL_STATE(249)] = 12019, + [SMALL_STATE(250)] = 12038, + [SMALL_STATE(251)] = 12057, + [SMALL_STATE(252)] = 12076, + [SMALL_STATE(253)] = 12095, + [SMALL_STATE(254)] = 12114, + [SMALL_STATE(255)] = 12133, + [SMALL_STATE(256)] = 12152, + [SMALL_STATE(257)] = 12171, + [SMALL_STATE(258)] = 12190, + [SMALL_STATE(259)] = 12209, + [SMALL_STATE(260)] = 12228, + [SMALL_STATE(261)] = 12247, + [SMALL_STATE(262)] = 12266, + [SMALL_STATE(263)] = 12285, + [SMALL_STATE(264)] = 12304, + [SMALL_STATE(265)] = 12323, + [SMALL_STATE(266)] = 12342, + [SMALL_STATE(267)] = 12361, + [SMALL_STATE(268)] = 12380, + [SMALL_STATE(269)] = 12399, + [SMALL_STATE(270)] = 12418, + [SMALL_STATE(271)] = 12437, + [SMALL_STATE(272)] = 12456, + [SMALL_STATE(273)] = 12475, + [SMALL_STATE(274)] = 12494, + [SMALL_STATE(275)] = 12513, + [SMALL_STATE(276)] = 12532, + [SMALL_STATE(277)] = 12551, + [SMALL_STATE(278)] = 12570, + [SMALL_STATE(279)] = 12589, + [SMALL_STATE(280)] = 12608, + [SMALL_STATE(281)] = 12625, + [SMALL_STATE(282)] = 12642, + [SMALL_STATE(283)] = 12659, + [SMALL_STATE(284)] = 12676, + [SMALL_STATE(285)] = 12693, + [SMALL_STATE(286)] = 12710, + [SMALL_STATE(287)] = 12727, + [SMALL_STATE(288)] = 12744, + [SMALL_STATE(289)] = 12761, + [SMALL_STATE(290)] = 12778, + [SMALL_STATE(291)] = 12795, + [SMALL_STATE(292)] = 12812, + [SMALL_STATE(293)] = 12829, + [SMALL_STATE(294)] = 12844, + [SMALL_STATE(295)] = 12861, + [SMALL_STATE(296)] = 12878, + [SMALL_STATE(297)] = 12895, + [SMALL_STATE(298)] = 12910, + [SMALL_STATE(299)] = 12925, + [SMALL_STATE(300)] = 12942, + [SMALL_STATE(301)] = 12959, + [SMALL_STATE(302)] = 12976, + [SMALL_STATE(303)] = 12993, + [SMALL_STATE(304)] = 13010, + [SMALL_STATE(305)] = 13027, + [SMALL_STATE(306)] = 13044, + [SMALL_STATE(307)] = 13061, + [SMALL_STATE(308)] = 13078, + [SMALL_STATE(309)] = 13095, + [SMALL_STATE(310)] = 13112, + [SMALL_STATE(311)] = 13129, + [SMALL_STATE(312)] = 13146, + [SMALL_STATE(313)] = 13163, + [SMALL_STATE(314)] = 13180, + [SMALL_STATE(315)] = 13197, + [SMALL_STATE(316)] = 13214, + [SMALL_STATE(317)] = 13231, + [SMALL_STATE(318)] = 13248, + [SMALL_STATE(319)] = 13265, + [SMALL_STATE(320)] = 13282, + [SMALL_STATE(321)] = 13299, + [SMALL_STATE(322)] = 13316, + [SMALL_STATE(323)] = 13333, + [SMALL_STATE(324)] = 13350, + [SMALL_STATE(325)] = 13367, + [SMALL_STATE(326)] = 13384, + [SMALL_STATE(327)] = 13401, + [SMALL_STATE(328)] = 13418, + [SMALL_STATE(329)] = 13435, + [SMALL_STATE(330)] = 13452, + [SMALL_STATE(331)] = 13469, + [SMALL_STATE(332)] = 13486, + [SMALL_STATE(333)] = 13503, + [SMALL_STATE(334)] = 13520, + [SMALL_STATE(335)] = 13537, + [SMALL_STATE(336)] = 13554, + [SMALL_STATE(337)] = 13571, + [SMALL_STATE(338)] = 13588, + [SMALL_STATE(339)] = 13605, + [SMALL_STATE(340)] = 13622, + [SMALL_STATE(341)] = 13639, + [SMALL_STATE(342)] = 13656, + [SMALL_STATE(343)] = 13673, + [SMALL_STATE(344)] = 13690, + [SMALL_STATE(345)] = 13707, + [SMALL_STATE(346)] = 13724, + [SMALL_STATE(347)] = 13741, + [SMALL_STATE(348)] = 13758, + [SMALL_STATE(349)] = 13775, + [SMALL_STATE(350)] = 13792, + [SMALL_STATE(351)] = 13809, + [SMALL_STATE(352)] = 13826, + [SMALL_STATE(353)] = 13843, + [SMALL_STATE(354)] = 13860, + [SMALL_STATE(355)] = 13877, + [SMALL_STATE(356)] = 13894, + [SMALL_STATE(357)] = 13911, + [SMALL_STATE(358)] = 13928, + [SMALL_STATE(359)] = 13945, + [SMALL_STATE(360)] = 13962, + [SMALL_STATE(361)] = 13979, + [SMALL_STATE(362)] = 13996, + [SMALL_STATE(363)] = 14013, + [SMALL_STATE(364)] = 14030, + [SMALL_STATE(365)] = 14047, + [SMALL_STATE(366)] = 14064, + [SMALL_STATE(367)] = 14081, + [SMALL_STATE(368)] = 14098, + [SMALL_STATE(369)] = 14115, + [SMALL_STATE(370)] = 14132, + [SMALL_STATE(371)] = 14149, + [SMALL_STATE(372)] = 14166, + [SMALL_STATE(373)] = 14183, + [SMALL_STATE(374)] = 14200, + [SMALL_STATE(375)] = 14215, + [SMALL_STATE(376)] = 14230, + [SMALL_STATE(377)] = 14247, + [SMALL_STATE(378)] = 14264, + [SMALL_STATE(379)] = 14281, + [SMALL_STATE(380)] = 14298, + [SMALL_STATE(381)] = 14315, + [SMALL_STATE(382)] = 14332, + [SMALL_STATE(383)] = 14349, + [SMALL_STATE(384)] = 14366, + [SMALL_STATE(385)] = 14383, + [SMALL_STATE(386)] = 14400, + [SMALL_STATE(387)] = 14417, + [SMALL_STATE(388)] = 14434, + [SMALL_STATE(389)] = 14451, + [SMALL_STATE(390)] = 14468, + [SMALL_STATE(391)] = 14485, + [SMALL_STATE(392)] = 14502, + [SMALL_STATE(393)] = 14519, + [SMALL_STATE(394)] = 14536, + [SMALL_STATE(395)] = 14553, + [SMALL_STATE(396)] = 14570, + [SMALL_STATE(397)] = 14587, + [SMALL_STATE(398)] = 14604, + [SMALL_STATE(399)] = 14621, + [SMALL_STATE(400)] = 14638, + [SMALL_STATE(401)] = 14655, + [SMALL_STATE(402)] = 14672, + [SMALL_STATE(403)] = 14689, + [SMALL_STATE(404)] = 14706, + [SMALL_STATE(405)] = 14723, + [SMALL_STATE(406)] = 14740, + [SMALL_STATE(407)] = 14757, + [SMALL_STATE(408)] = 14774, + [SMALL_STATE(409)] = 14791, + [SMALL_STATE(410)] = 14808, + [SMALL_STATE(411)] = 14825, + [SMALL_STATE(412)] = 14842, + [SMALL_STATE(413)] = 14859, + [SMALL_STATE(414)] = 14876, + [SMALL_STATE(415)] = 14893, + [SMALL_STATE(416)] = 14910, + [SMALL_STATE(417)] = 14927, + [SMALL_STATE(418)] = 14944, + [SMALL_STATE(419)] = 14961, + [SMALL_STATE(420)] = 14978, + [SMALL_STATE(421)] = 14995, + [SMALL_STATE(422)] = 15012, + [SMALL_STATE(423)] = 15029, + [SMALL_STATE(424)] = 15046, + [SMALL_STATE(425)] = 15063, + [SMALL_STATE(426)] = 15080, + [SMALL_STATE(427)] = 15097, + [SMALL_STATE(428)] = 15114, + [SMALL_STATE(429)] = 15131, + [SMALL_STATE(430)] = 15148, + [SMALL_STATE(431)] = 15165, + [SMALL_STATE(432)] = 15182, + [SMALL_STATE(433)] = 15199, + [SMALL_STATE(434)] = 15216, + [SMALL_STATE(435)] = 15233, + [SMALL_STATE(436)] = 15250, + [SMALL_STATE(437)] = 15267, + [SMALL_STATE(438)] = 15284, + [SMALL_STATE(439)] = 15301, + [SMALL_STATE(440)] = 15318, + [SMALL_STATE(441)] = 15335, + [SMALL_STATE(442)] = 15352, + [SMALL_STATE(443)] = 15369, + [SMALL_STATE(444)] = 15386, + [SMALL_STATE(445)] = 15403, + [SMALL_STATE(446)] = 15420, + [SMALL_STATE(447)] = 15437, + [SMALL_STATE(448)] = 15454, + [SMALL_STATE(449)] = 15471, + [SMALL_STATE(450)] = 15488, + [SMALL_STATE(451)] = 15505, + [SMALL_STATE(452)] = 15522, + [SMALL_STATE(453)] = 15539, + [SMALL_STATE(454)] = 15556, + [SMALL_STATE(455)] = 15573, + [SMALL_STATE(456)] = 15590, + [SMALL_STATE(457)] = 15607, + [SMALL_STATE(458)] = 15624, + [SMALL_STATE(459)] = 15641, + [SMALL_STATE(460)] = 15658, + [SMALL_STATE(461)] = 15675, + [SMALL_STATE(462)] = 15692, + [SMALL_STATE(463)] = 15706, + [SMALL_STATE(464)] = 15720, + [SMALL_STATE(465)] = 15734, + [SMALL_STATE(466)] = 15748, + [SMALL_STATE(467)] = 15762, + [SMALL_STATE(468)] = 15776, + [SMALL_STATE(469)] = 15790, + [SMALL_STATE(470)] = 15804, + [SMALL_STATE(471)] = 15818, + [SMALL_STATE(472)] = 15832, + [SMALL_STATE(473)] = 15846, + [SMALL_STATE(474)] = 15860, + [SMALL_STATE(475)] = 15874, + [SMALL_STATE(476)] = 15888, + [SMALL_STATE(477)] = 15902, + [SMALL_STATE(478)] = 15916, + [SMALL_STATE(479)] = 15930, + [SMALL_STATE(480)] = 15944, + [SMALL_STATE(481)] = 15958, + [SMALL_STATE(482)] = 15972, + [SMALL_STATE(483)] = 15986, + [SMALL_STATE(484)] = 16000, + [SMALL_STATE(485)] = 16014, + [SMALL_STATE(486)] = 16028, + [SMALL_STATE(487)] = 16042, + [SMALL_STATE(488)] = 16056, + [SMALL_STATE(489)] = 16070, + [SMALL_STATE(490)] = 16084, + [SMALL_STATE(491)] = 16098, + [SMALL_STATE(492)] = 16112, + [SMALL_STATE(493)] = 16126, + [SMALL_STATE(494)] = 16140, + [SMALL_STATE(495)] = 16154, + [SMALL_STATE(496)] = 16168, + [SMALL_STATE(497)] = 16182, + [SMALL_STATE(498)] = 16196, + [SMALL_STATE(499)] = 16210, + [SMALL_STATE(500)] = 16224, + [SMALL_STATE(501)] = 16238, + [SMALL_STATE(502)] = 16252, + [SMALL_STATE(503)] = 16266, + [SMALL_STATE(504)] = 16280, + [SMALL_STATE(505)] = 16294, + [SMALL_STATE(506)] = 16308, + [SMALL_STATE(507)] = 16322, + [SMALL_STATE(508)] = 16336, + [SMALL_STATE(509)] = 16350, + [SMALL_STATE(510)] = 16364, + [SMALL_STATE(511)] = 16378, + [SMALL_STATE(512)] = 16392, + [SMALL_STATE(513)] = 16406, + [SMALL_STATE(514)] = 16420, + [SMALL_STATE(515)] = 16434, + [SMALL_STATE(516)] = 16448, + [SMALL_STATE(517)] = 16462, + [SMALL_STATE(518)] = 16476, + [SMALL_STATE(519)] = 16490, + [SMALL_STATE(520)] = 16504, + [SMALL_STATE(521)] = 16518, + [SMALL_STATE(522)] = 16532, + [SMALL_STATE(523)] = 16546, + [SMALL_STATE(524)] = 16560, + [SMALL_STATE(525)] = 16574, + [SMALL_STATE(526)] = 16588, + [SMALL_STATE(527)] = 16602, + [SMALL_STATE(528)] = 16616, + [SMALL_STATE(529)] = 16630, + [SMALL_STATE(530)] = 16644, + [SMALL_STATE(531)] = 16658, + [SMALL_STATE(532)] = 16672, + [SMALL_STATE(533)] = 16686, + [SMALL_STATE(534)] = 16700, + [SMALL_STATE(535)] = 16714, + [SMALL_STATE(536)] = 16728, + [SMALL_STATE(537)] = 16742, + [SMALL_STATE(538)] = 16756, + [SMALL_STATE(539)] = 16770, + [SMALL_STATE(540)] = 16784, + [SMALL_STATE(541)] = 16798, + [SMALL_STATE(542)] = 16812, + [SMALL_STATE(543)] = 16826, + [SMALL_STATE(544)] = 16840, + [SMALL_STATE(545)] = 16854, + [SMALL_STATE(546)] = 16868, + [SMALL_STATE(547)] = 16882, + [SMALL_STATE(548)] = 16896, + [SMALL_STATE(549)] = 16910, + [SMALL_STATE(550)] = 16924, + [SMALL_STATE(551)] = 16938, + [SMALL_STATE(552)] = 16952, + [SMALL_STATE(553)] = 16966, + [SMALL_STATE(554)] = 16980, + [SMALL_STATE(555)] = 16991, + [SMALL_STATE(556)] = 17002, + [SMALL_STATE(557)] = 17013, + [SMALL_STATE(558)] = 17024, + [SMALL_STATE(559)] = 17035, + [SMALL_STATE(560)] = 17046, + [SMALL_STATE(561)] = 17057, + [SMALL_STATE(562)] = 17068, + [SMALL_STATE(563)] = 17079, + [SMALL_STATE(564)] = 17090, + [SMALL_STATE(565)] = 17101, + [SMALL_STATE(566)] = 17112, + [SMALL_STATE(567)] = 17123, + [SMALL_STATE(568)] = 17134, + [SMALL_STATE(569)] = 17145, + [SMALL_STATE(570)] = 17156, + [SMALL_STATE(571)] = 17167, + [SMALL_STATE(572)] = 17178, + [SMALL_STATE(573)] = 17189, + [SMALL_STATE(574)] = 17200, + [SMALL_STATE(575)] = 17211, + [SMALL_STATE(576)] = 17222, + [SMALL_STATE(577)] = 17233, + [SMALL_STATE(578)] = 17244, + [SMALL_STATE(579)] = 17255, + [SMALL_STATE(580)] = 17266, + [SMALL_STATE(581)] = 17274, + [SMALL_STATE(582)] = 17282, + [SMALL_STATE(583)] = 17290, + [SMALL_STATE(584)] = 17298, + [SMALL_STATE(585)] = 17306, + [SMALL_STATE(586)] = 17314, + [SMALL_STATE(587)] = 17322, + [SMALL_STATE(588)] = 17330, + [SMALL_STATE(589)] = 17338, + [SMALL_STATE(590)] = 17346, + [SMALL_STATE(591)] = 17354, + [SMALL_STATE(592)] = 17362, + [SMALL_STATE(593)] = 17370, + [SMALL_STATE(594)] = 17378, + [SMALL_STATE(595)] = 17386, + [SMALL_STATE(596)] = 17394, + [SMALL_STATE(597)] = 17402, + [SMALL_STATE(598)] = 17410, + [SMALL_STATE(599)] = 17418, + [SMALL_STATE(600)] = 17426, + [SMALL_STATE(601)] = 17434, + [SMALL_STATE(602)] = 17442, + [SMALL_STATE(603)] = 17450, + [SMALL_STATE(604)] = 17458, + [SMALL_STATE(605)] = 17466, + [SMALL_STATE(606)] = 17474, + [SMALL_STATE(607)] = 17482, + [SMALL_STATE(608)] = 17490, + [SMALL_STATE(609)] = 17498, + [SMALL_STATE(610)] = 17506, + [SMALL_STATE(611)] = 17514, + [SMALL_STATE(612)] = 17522, + [SMALL_STATE(613)] = 17530, + [SMALL_STATE(614)] = 17538, + [SMALL_STATE(615)] = 17546, + [SMALL_STATE(616)] = 17554, + [SMALL_STATE(617)] = 17562, + [SMALL_STATE(618)] = 17570, + [SMALL_STATE(619)] = 17578, + [SMALL_STATE(620)] = 17586, + [SMALL_STATE(621)] = 17594, + [SMALL_STATE(622)] = 17602, + [SMALL_STATE(623)] = 17610, + [SMALL_STATE(624)] = 17618, + [SMALL_STATE(625)] = 17626, + [SMALL_STATE(626)] = 17634, + [SMALL_STATE(627)] = 17642, + [SMALL_STATE(628)] = 17650, + [SMALL_STATE(629)] = 17658, + [SMALL_STATE(630)] = 17666, + [SMALL_STATE(631)] = 17674, + [SMALL_STATE(632)] = 17682, + [SMALL_STATE(633)] = 17690, + [SMALL_STATE(634)] = 17698, + [SMALL_STATE(635)] = 17706, + [SMALL_STATE(636)] = 17714, + [SMALL_STATE(637)] = 17722, + [SMALL_STATE(638)] = 17730, + [SMALL_STATE(639)] = 17738, + [SMALL_STATE(640)] = 17746, + [SMALL_STATE(641)] = 17754, + [SMALL_STATE(642)] = 17762, + [SMALL_STATE(643)] = 17770, + [SMALL_STATE(644)] = 17778, + [SMALL_STATE(645)] = 17786, + [SMALL_STATE(646)] = 17794, + [SMALL_STATE(647)] = 17802, + [SMALL_STATE(648)] = 17810, + [SMALL_STATE(649)] = 17818, + [SMALL_STATE(650)] = 17826, + [SMALL_STATE(651)] = 17834, + [SMALL_STATE(652)] = 17842, + [SMALL_STATE(653)] = 17850, + [SMALL_STATE(654)] = 17858, + [SMALL_STATE(655)] = 17866, + [SMALL_STATE(656)] = 17874, + [SMALL_STATE(657)] = 17882, + [SMALL_STATE(658)] = 17890, + [SMALL_STATE(659)] = 17898, + [SMALL_STATE(660)] = 17906, + [SMALL_STATE(661)] = 17914, + [SMALL_STATE(662)] = 17922, + [SMALL_STATE(663)] = 17930, + [SMALL_STATE(664)] = 17938, + [SMALL_STATE(665)] = 17946, + [SMALL_STATE(666)] = 17954, + [SMALL_STATE(667)] = 17962, + [SMALL_STATE(668)] = 17970, + [SMALL_STATE(669)] = 17978, + [SMALL_STATE(670)] = 17986, + [SMALL_STATE(671)] = 17994, + [SMALL_STATE(672)] = 18002, + [SMALL_STATE(673)] = 18010, + [SMALL_STATE(674)] = 18018, + [SMALL_STATE(675)] = 18026, + [SMALL_STATE(676)] = 18034, + [SMALL_STATE(677)] = 18042, + [SMALL_STATE(678)] = 18050, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -17331,719 +16669,712 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(162), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [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(462), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(531), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(530), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(514), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(479), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(481), [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(548), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(547), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(546), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(545), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(493), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(464), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(465), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(466), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(467), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(547), [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(238), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(216), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(673), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(672), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(101), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(207), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(205), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(239), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(462), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(548), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(547), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(546), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(545), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(544), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(465), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(176), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(495), - [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(501), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(238), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(216), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(673), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(672), - [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(245), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(245), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(213), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(652), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(653), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(209), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(275), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(218), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(214), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(646), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(647), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(272), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(210), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(658), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(659), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(225), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(299), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(217), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(664), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(665), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(227), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 7), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 7), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [90] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(238), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(529), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(99), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(208), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(205), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(237), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(160), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(514), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(464), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(465), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(466), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(467), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(501), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(509), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(162), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(468), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(163), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(527), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(506), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(238), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(529), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(204), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(375), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(216), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(476), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(309), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(471), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(219), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(453), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(489), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(226), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(431), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(485), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(227), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 4), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 4), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 5), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 5), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 5), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 5), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 6), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 6), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 7), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 7), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 6), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 6), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 7), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 7), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 6), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 6), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(500), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1467] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 6), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 6), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 7), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 7), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(530), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1453] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), }; #ifdef __cplusplus