diff --git a/corpus/comment.txt b/corpus/comment.txt index 3b3af74..1a973e4 100644 --- a/corpus/comment.txt +++ b/corpus/comment.txt @@ -41,7 +41,8 @@ Line comment [comment] Message with Line comment [comment] =================================== message(STATUS #Some line comment -message #Some other line comment + +Second #Some other line comment ) --- diff --git a/corpus/condition.txt b/corpus/condition.txt index 4b8b313..e555b2e 100644 --- a/corpus/condition.txt +++ b/corpus/condition.txt @@ -1,7 +1,7 @@ ==================== Empty if [condition] ==================== -if(cond) +if ( cond ) endif() --- diff --git a/corpus/foreach.txt b/corpus/foreach.txt index 5de8cd9..083e1a8 100644 --- a/corpus/foreach.txt +++ b/corpus/foreach.txt @@ -90,6 +90,7 @@ endforeach() (foreach_command (foreach) (argument (unquoted_argument)) + (argument (unquoted_argument)) ) (endforeach_command (endforeach)) ) @@ -109,6 +110,7 @@ endforeach() (foreach_command (foreach) (argument (unquoted_argument)) + (argument (unquoted_argument)) ) (endforeach_command (endforeach)) ) diff --git a/corpus/message.txt b/corpus/message.txt index 88e8ad6..3548b5e 100644 --- a/corpus/message.txt +++ b/corpus/message.txt @@ -75,3 +75,19 @@ message(STATUS (argument (bracket_argument)) ) ) + +====================================================== +Message with STATUS and an unquoted argument [message] +====================================================== + +message(STATUS argument) + +--- + +(source_file + (normal_command + (identifier) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) diff --git a/corpus/unquoted_argument.txt b/corpus/unquoted_argument.txt index 172f381..64d4f7b 100644 --- a/corpus/unquoted_argument.txt +++ b/corpus/unquoted_argument.txt @@ -25,6 +25,7 @@ message(STATUS Hello) (normal_command (identifier) (argument (unquoted_argument)) + (argument (unquoted_argument)) ) ) diff --git a/grammar.js b/grammar.js index b3a007c..16a37b4 100644 --- a/grammar.js +++ b/grammar.js @@ -17,10 +17,10 @@ module.exports = grammar({ name: "cmake", externals: ($) => [$.bracket_argument, $.bracket_comment, $.line_comment], - extras: ($) => [/[\s\n\r]/, $.bracket_comment, $.line_comment], + extras: ($) => [$.bracket_comment, $.line_comment], rules: { - source_file: ($) => repeat($._command_invocation), + source_file: ($) => repeat($._untrimmed_command_invocation), escape_sequence: ($) => choice($._escape_identity, $._escape_encoded, $._escape_semicolon), _escape_identity: (_) => /\\[^A-Za-z0-9;]/, @@ -34,39 +34,45 @@ module.exports = grammar({ cache_var: ($) => seq("$CACHE", "{", $.variable, "}"), argument: ($) => choice($.bracket_argument, $.quoted_argument, $.unquoted_argument), + _untrimmed_argument: ($) => choice(/\s/, $.argument), quoted_argument: ($) => seq('"', optional($.quoted_element), '"'), quoted_element: ($) => repeat1(choice($.variable_ref, /[^\\"]/, $.escape_sequence)), - unquoted_argument: ($) => prec.right(repeat1(choice($.variable_ref, /[^\s\n\r()#\"\\]/, $.escape_sequence))), + unquoted_argument: ($) => prec.right(repeat1(choice($.variable_ref, /[^\s()#\"\\]/, $.escape_sequence))), - if_command: ($) => command($.if, repeat(choice($.argument))), - elseif_command: ($) => command($.elseif, repeat(choice($.argument))), - else_command: ($) => command($.else, optional(choice($.argument))), - endif_command: ($) => command($.endif, optional(choice($.argument))), + if_command: ($) => command($.if, repeat($._untrimmed_argument)), + elseif_command: ($) => command($.elseif, repeat($._untrimmed_argument)), + else_command: ($) => command($.else, optional(seq(/\s*/, $.argument, /\s*/))), + endif_command: ($) => command($.endif, optional(seq(/\s*/, $.argument, /\s*/))), if_condition: ($) => - seq($.if_command, repeat(choice($._command_invocation, $.elseif_command, $.else_command)), $.endif_command), + seq( + $.if_command, + repeat(choice($._untrimmed_command_invocation, $.elseif_command, $.else_command)), + $.endif_command + ), - foreach_command: ($) => command($.foreach, repeat(choice($.argument))), + foreach_command: ($) => command($.foreach, repeat($._untrimmed_argument)), endforeach_command: ($) => command($.endforeach, optional($.argument)), - foreach_loop: ($) => seq($.foreach_command, repeat($._command_invocation), $.endforeach_command), + foreach_loop: ($) => seq($.foreach_command, repeat($._untrimmed_command_invocation), $.endforeach_command), - while_command: ($) => command($.while, repeat(choice($.argument))), - endwhile_command: ($) => command($.endwhile, optional(choice($.argument))), - while_loop: ($) => seq($.while_command, repeat($._command_invocation), $.endwhile_command), + while_command: ($) => command($.while, repeat($._untrimmed_argument)), + endwhile_command: ($) => command($.endwhile, optional(seq(/\s*/, $.argument, /\s*/))), + while_loop: ($) => seq($.while_command, repeat($._untrimmed_command_invocation), $.endwhile_command), - function_command: ($) => command($.function, repeat($.argument)), - endfunction_command: ($) => command($.endfunction, repeat($.argument)), - function_def: ($) => seq($.function_command, repeat($._command_invocation), $.endfunction_command), + function_command: ($) => command($.function, repeat($._untrimmed_argument)), + endfunction_command: ($) => command($.endfunction, repeat($._untrimmed_argument)), + function_def: ($) => seq($.function_command, repeat($._untrimmed_command_invocation), $.endfunction_command), - macro_command: ($) => command($.macro, repeat($.argument)), - endmacro_command: ($) => command($.endmacro, repeat($.argument)), - macro_def: ($) => seq($.macro_command, repeat($._command_invocation), $.endmacro_command), + macro_command: ($) => command($.macro, repeat($._untrimmed_argument)), + endmacro_command: ($) => command($.endmacro, repeat($._untrimmed_argument)), + macro_def: ($) => seq($.macro_command, repeat($._untrimmed_command_invocation), $.endmacro_command), - normal_command: ($) => command($.identifier, repeat($.argument)), + normal_command: ($) => command($.identifier, repeat($._untrimmed_argument)), _command_invocation: ($) => choice($.normal_command, $.if_condition, $.foreach_loop, $.while_loop, $.function_def, $.macro_def), + _untrimmed_command_invocation: ($) => choice(/\s/, $._command_invocation), ...commandNames(...commands), identifier: (_) => /[A-Za-z_][A-Za-z0-9_]*/, @@ -87,5 +93,5 @@ function commandNames(...names) { } function command(name_rule, arg_rule) { - return seq(name_rule, "(", arg_rule, ")"); + return seq(name_rule, repeat(/[\t ]/), "(", arg_rule, ")"); } diff --git a/src/grammar.json b/src/grammar.json index 93f6351..23b19f8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5,7 +5,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" } }, "escape_sequence": { @@ -163,6 +163,19 @@ } ] }, + "_untrimmed_argument": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\s" + }, + { + "type": "SYMBOL", + "name": "argument" + } + ] + }, "quoted_argument": { "type": "SEQ", "members": [ @@ -222,7 +235,7 @@ }, { "type": "PATTERN", - "value": "[^\\s\\n\\r()#\\\"\\\\]" + "value": "[^\\s()#\\\"\\\\]" }, { "type": "SYMBOL", @@ -239,6 +252,13 @@ "type": "SYMBOL", "name": "if" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -246,13 +266,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] + "type": "SYMBOL", + "name": "_untrimmed_argument" } }, { @@ -268,6 +283,13 @@ "type": "SYMBOL", "name": "elseif" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -275,13 +297,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] + "type": "SYMBOL", + "name": "_untrimmed_argument" } }, { @@ -297,6 +314,13 @@ "type": "SYMBOL", "name": "else" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -305,11 +329,19 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "PATTERN", + "value": "\\s*" + }, { "type": "SYMBOL", "name": "argument" + }, + { + "type": "PATTERN", + "value": "\\s*" } ] }, @@ -331,6 +363,13 @@ "type": "SYMBOL", "name": "endif" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -339,11 +378,19 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "PATTERN", + "value": "\\s*" + }, { "type": "SYMBOL", "name": "argument" + }, + { + "type": "PATTERN", + "value": "\\s*" } ] }, @@ -372,7 +419,7 @@ "members": [ { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" }, { "type": "SYMBOL", @@ -398,6 +445,13 @@ "type": "SYMBOL", "name": "foreach" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -405,13 +459,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] + "type": "SYMBOL", + "name": "_untrimmed_argument" } }, { @@ -427,6 +476,13 @@ "type": "SYMBOL", "name": "endforeach" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -460,7 +516,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" } }, { @@ -476,6 +532,13 @@ "type": "SYMBOL", "name": "while" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -483,13 +546,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] + "type": "SYMBOL", + "name": "_untrimmed_argument" } }, { @@ -505,6 +563,13 @@ "type": "SYMBOL", "name": "endwhile" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -513,11 +578,19 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "PATTERN", + "value": "\\s*" + }, { "type": "SYMBOL", "name": "argument" + }, + { + "type": "PATTERN", + "value": "\\s*" } ] }, @@ -543,7 +616,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" } }, { @@ -559,6 +632,13 @@ "type": "SYMBOL", "name": "function" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -567,7 +647,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "argument" + "name": "_untrimmed_argument" } }, { @@ -583,6 +663,13 @@ "type": "SYMBOL", "name": "endfunction" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -591,7 +678,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "argument" + "name": "_untrimmed_argument" } }, { @@ -611,7 +698,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" } }, { @@ -627,6 +714,13 @@ "type": "SYMBOL", "name": "macro" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -635,7 +729,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "argument" + "name": "_untrimmed_argument" } }, { @@ -651,6 +745,13 @@ "type": "SYMBOL", "name": "endmacro" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -659,7 +760,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "argument" + "name": "_untrimmed_argument" } }, { @@ -679,7 +780,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_command_invocation" + "name": "_untrimmed_command_invocation" } }, { @@ -695,6 +796,13 @@ "type": "SYMBOL", "name": "identifier" }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[\\t ]" + } + }, { "type": "STRING", "value": "(" @@ -703,7 +811,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "argument" + "name": "_untrimmed_argument" } }, { @@ -741,6 +849,19 @@ } ] }, + "_untrimmed_command_invocation": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\s" + }, + { + "type": "SYMBOL", + "name": "_command_invocation" + } + ] + }, "if": { "type": "PATTERN", "value": "[iI][fF]" @@ -799,10 +920,6 @@ } }, "extras": [ - { - "type": "PATTERN", - "value": "[\\s\\n\\r]" - }, { "type": "SYMBOL", "name": "bracket_comment" diff --git a/src/parser.c b/src/parser.c index e532c68..85e31ec 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,14 +6,14 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 405 +#define STATE_COUNT 662 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 71 +#define SYMBOL_COUNT 76 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 33 +#define TOKEN_COUNT 36 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 4 +#define MAX_ALIAS_SEQUENCE_LENGTH 7 #define PRODUCTION_ID_COUNT 1 enum { @@ -28,65 +28,70 @@ enum { anon_sym_DOLLARENV = 9, anon_sym_LBRACE = 10, anon_sym_DOLLARCACHE = 11, - anon_sym_DQUOTE = 12, - aux_sym_quoted_element_token1 = 13, - aux_sym_unquoted_argument_token1 = 14, - anon_sym_LPAREN = 15, - anon_sym_RPAREN = 16, - sym_if = 17, - sym_elseif = 18, - sym_else = 19, - sym_endif = 20, - sym_foreach = 21, - sym_endforeach = 22, - sym_while = 23, - sym_endwhile = 24, - sym_function = 25, - sym_endfunction = 26, - sym_macro = 27, - sym_endmacro = 28, - sym_identifier = 29, - sym_bracket_argument = 30, - sym_bracket_comment = 31, - sym_line_comment = 32, - sym_source_file = 33, - sym_escape_sequence = 34, - sym__escape_encoded = 35, - sym_variable = 36, - sym_variable_ref = 37, - sym_normal_var = 38, - sym_env_var = 39, - sym_cache_var = 40, - sym_argument = 41, - sym_quoted_argument = 42, - sym_quoted_element = 43, - sym_unquoted_argument = 44, - sym_if_command = 45, - sym_elseif_command = 46, - sym_else_command = 47, - sym_endif_command = 48, - sym_if_condition = 49, - sym_foreach_command = 50, - sym_endforeach_command = 51, - sym_foreach_loop = 52, - sym_while_command = 53, - sym_endwhile_command = 54, - sym_while_loop = 55, - sym_function_command = 56, - sym_endfunction_command = 57, - sym_function_def = 58, - sym_macro_command = 59, - sym_endmacro_command = 60, - sym_macro_def = 61, - sym_normal_command = 62, - sym__command_invocation = 63, - aux_sym_source_file_repeat1 = 64, - aux_sym_variable_repeat1 = 65, - aux_sym_quoted_element_repeat1 = 66, - aux_sym_unquoted_argument_repeat1 = 67, - aux_sym_if_command_repeat1 = 68, - aux_sym_if_condition_repeat1 = 69, - aux_sym_function_command_repeat1 = 70, + aux_sym__untrimmed_argument_token1 = 12, + anon_sym_DQUOTE = 13, + aux_sym_quoted_element_token1 = 14, + aux_sym_unquoted_argument_token1 = 15, + aux_sym_if_command_token1 = 16, + anon_sym_LPAREN = 17, + anon_sym_RPAREN = 18, + aux_sym_else_command_token1 = 19, + sym_if = 20, + sym_elseif = 21, + sym_else = 22, + sym_endif = 23, + sym_foreach = 24, + sym_endforeach = 25, + sym_while = 26, + sym_endwhile = 27, + sym_function = 28, + sym_endfunction = 29, + sym_macro = 30, + sym_endmacro = 31, + sym_identifier = 32, + sym_bracket_argument = 33, + sym_bracket_comment = 34, + sym_line_comment = 35, + sym_source_file = 36, + sym_escape_sequence = 37, + sym__escape_encoded = 38, + sym_variable = 39, + sym_variable_ref = 40, + sym_normal_var = 41, + sym_env_var = 42, + sym_cache_var = 43, + sym_argument = 44, + sym__untrimmed_argument = 45, + sym_quoted_argument = 46, + sym_quoted_element = 47, + sym_unquoted_argument = 48, + sym_if_command = 49, + sym_elseif_command = 50, + sym_else_command = 51, + sym_endif_command = 52, + sym_if_condition = 53, + sym_foreach_command = 54, + sym_endforeach_command = 55, + sym_foreach_loop = 56, + sym_while_command = 57, + sym_endwhile_command = 58, + sym_while_loop = 59, + sym_function_command = 60, + sym_endfunction_command = 61, + sym_function_def = 62, + sym_macro_command = 63, + sym_endmacro_command = 64, + sym_macro_def = 65, + sym_normal_command = 66, + sym__command_invocation = 67, + sym__untrimmed_command_invocation = 68, + aux_sym_source_file_repeat1 = 69, + aux_sym_variable_repeat1 = 70, + aux_sym_quoted_element_repeat1 = 71, + aux_sym_unquoted_argument_repeat1 = 72, + aux_sym_if_command_repeat1 = 73, + aux_sym_if_command_repeat2 = 74, + aux_sym_if_condition_repeat1 = 75, }; static const char * const ts_symbol_names[] = { @@ -102,11 +107,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOLLARENV] = "$ENV", [anon_sym_LBRACE] = "{", [anon_sym_DOLLARCACHE] = "$CACHE", + [aux_sym__untrimmed_argument_token1] = "_untrimmed_argument_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_quoted_element_token1] = "quoted_element_token1", [aux_sym_unquoted_argument_token1] = "unquoted_argument_token1", + [aux_sym_if_command_token1] = "if_command_token1", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", + [aux_sym_else_command_token1] = "else_command_token1", [sym_if] = "if", [sym_elseif] = "elseif", [sym_else] = "else", @@ -132,6 +140,7 @@ static const char * const ts_symbol_names[] = { [sym_env_var] = "env_var", [sym_cache_var] = "cache_var", [sym_argument] = "argument", + [sym__untrimmed_argument] = "_untrimmed_argument", [sym_quoted_argument] = "quoted_argument", [sym_quoted_element] = "quoted_element", [sym_unquoted_argument] = "unquoted_argument", @@ -154,13 +163,14 @@ static const char * const ts_symbol_names[] = { [sym_macro_def] = "macro_def", [sym_normal_command] = "normal_command", [sym__command_invocation] = "_command_invocation", + [sym__untrimmed_command_invocation] = "_untrimmed_command_invocation", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_variable_repeat1] = "variable_repeat1", [aux_sym_quoted_element_repeat1] = "quoted_element_repeat1", [aux_sym_unquoted_argument_repeat1] = "unquoted_argument_repeat1", [aux_sym_if_command_repeat1] = "if_command_repeat1", + [aux_sym_if_command_repeat2] = "if_command_repeat2", [aux_sym_if_condition_repeat1] = "if_condition_repeat1", - [aux_sym_function_command_repeat1] = "function_command_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -176,11 +186,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOLLARENV] = anon_sym_DOLLARENV, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_DOLLARCACHE] = anon_sym_DOLLARCACHE, + [aux_sym__untrimmed_argument_token1] = aux_sym__untrimmed_argument_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_quoted_element_token1] = aux_sym_quoted_element_token1, [aux_sym_unquoted_argument_token1] = aux_sym_unquoted_argument_token1, + [aux_sym_if_command_token1] = aux_sym_if_command_token1, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, + [aux_sym_else_command_token1] = aux_sym_else_command_token1, [sym_if] = sym_if, [sym_elseif] = sym_elseif, [sym_else] = sym_else, @@ -206,6 +219,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_env_var] = sym_env_var, [sym_cache_var] = sym_cache_var, [sym_argument] = sym_argument, + [sym__untrimmed_argument] = sym__untrimmed_argument, [sym_quoted_argument] = sym_quoted_argument, [sym_quoted_element] = sym_quoted_element, [sym_unquoted_argument] = sym_unquoted_argument, @@ -228,13 +242,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_macro_def] = sym_macro_def, [sym_normal_command] = sym_normal_command, [sym__command_invocation] = sym__command_invocation, + [sym__untrimmed_command_invocation] = sym__untrimmed_command_invocation, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_variable_repeat1] = aux_sym_variable_repeat1, [aux_sym_quoted_element_repeat1] = aux_sym_quoted_element_repeat1, [aux_sym_unquoted_argument_repeat1] = aux_sym_unquoted_argument_repeat1, [aux_sym_if_command_repeat1] = aux_sym_if_command_repeat1, + [aux_sym_if_command_repeat2] = aux_sym_if_command_repeat2, [aux_sym_if_condition_repeat1] = aux_sym_if_condition_repeat1, - [aux_sym_function_command_repeat1] = aux_sym_function_command_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -286,6 +301,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym__untrimmed_argument_token1] = { + .visible = false, + .named = false, + }, [anon_sym_DQUOTE] = { .visible = true, .named = false, @@ -298,6 +317,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_if_command_token1] = { + .visible = false, + .named = false, + }, [anon_sym_LPAREN] = { .visible = true, .named = false, @@ -306,6 +329,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_else_command_token1] = { + .visible = false, + .named = false, + }, [sym_if] = { .visible = true, .named = true, @@ -406,6 +433,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__untrimmed_argument] = { + .visible = false, + .named = true, + }, [sym_quoted_argument] = { .visible = true, .named = true, @@ -494,6 +525,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__untrimmed_command_invocation] = { + .visible = false, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -514,11 +549,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_if_condition_repeat1] = { + [aux_sym_if_command_repeat2] = { .visible = false, .named = false, }, - [aux_sym_function_command_repeat1] = { + [aux_sym_if_condition_repeat1] = { .visible = false, .named = false, }, @@ -538,59 +573,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(17); - if (lookahead == '"') ADVANCE(29); + if (lookahead == '"') ADVANCE(30); if (lookahead == '$') ADVANCE(34); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); + if (lookahead == '(') ADVANCE(36); + if (lookahead == ')') ADVANCE(37); if (lookahead == ';') ADVANCE(22); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '{') ADVANCE(27); - if (lookahead == '}') ADVANCE(25); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - if (lookahead == '+' || - ('-' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + lookahead == ' ') ADVANCE(29); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(29); if (lookahead != 0 && lookahead != '#') ADVANCE(33); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(29); + if (lookahead == '"') ADVANCE(30); if (lookahead == '$') ADVANCE(34); - if (lookahead == ')') ADVANCE(36); + if (lookahead == ')') ADVANCE(37); if (lookahead == ';') ADVANCE(22); if (lookahead == '\\') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(1) + lookahead == ' ') ADVANCE(29); if (lookahead != 0 && lookahead != '#' && lookahead != '(') ADVANCE(33); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(29); + if (lookahead == '"') ADVANCE(30); if (lookahead == '$') ADVANCE(32); if (lookahead == ';') ADVANCE(22); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(31); - if (lookahead != 0) ADVANCE(30); + if (lookahead != 0) ADVANCE(31); END_STATE(); case 3: + if (lookahead == '(') ADVANCE(36); if (lookahead == ';') ADVANCE(22); if (lookahead == '\\') ADVANCE(10); if (lookahead == '}') ADVANCE(25); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) + lookahead == ' ') ADVANCE(35); if (lookahead == '+' || ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -627,118 +650,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 11: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(83); + lookahead == 'e') ADVANCE(87); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(11) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 12: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(90); + lookahead == 'e') ADVANCE(94); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(12) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 13: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(91); + lookahead == 'e') ADVANCE(95); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(13) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 14: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(92); + lookahead == 'e') ADVANCE(96); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(14) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 15: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(93); + lookahead == 'e') ADVANCE(97); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(15) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 16: if (eof) ADVANCE(17); if (lookahead == '{') ADVANCE(27); if (lookahead == '}') ADVANCE(25); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(95); + lookahead == 'f') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(69); + lookahead == 'i') ADVANCE(73); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); + lookahead == 'm') ADVANCE(53); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(74); + lookahead == 'w') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(16) + lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 17: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -777,22 +800,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOLLARCACHE); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym__untrimmed_argument_token1); END_STATE(); case 30: - ACCEPT_TOKEN(aux_sym_quoted_element_token1); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 31: ACCEPT_TOKEN(aux_sym_quoted_element_token1); - if (lookahead == '$') ADVANCE(32); - if (lookahead == ';') ADVANCE(22); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(31); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(30); END_STATE(); case 32: ACCEPT_TOKEN(aux_sym_quoted_element_token1); @@ -810,656 +824,689 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(24); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_if_command_token1); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 37: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 38: + ACCEPT_TOKEN(aux_sym_else_command_token1); + if (lookahead == '$') ADVANCE(34); + if (lookahead == ';') ADVANCE(22); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(40); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + lookahead != '(' && + lookahead != ')') ADVANCE(33); + END_STATE(); + case 39: + ACCEPT_TOKEN(aux_sym_else_command_token1); + if (lookahead == ')') ADVANCE(37); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(40); + END_STATE(); + case 40: + ACCEPT_TOKEN(aux_sym_else_command_token1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(40); + END_STATE(); + case 41: ACCEPT_TOKEN(sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 38: + case 42: ACCEPT_TOKEN(sym_elseif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 39: + case 43: ACCEPT_TOKEN(sym_else); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(71); + lookahead == 'i') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 40: + case 44: ACCEPT_TOKEN(sym_endif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 41: + case 45: ACCEPT_TOKEN(sym_foreach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 42: + case 46: ACCEPT_TOKEN(sym_endforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 43: + case 47: ACCEPT_TOKEN(sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 44: + case 48: ACCEPT_TOKEN(sym_endwhile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 45: + case 49: ACCEPT_TOKEN(sym_function); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 46: + case 50: ACCEPT_TOKEN(sym_endfunction); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 47: + case 51: ACCEPT_TOKEN(sym_macro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 48: + case 52: ACCEPT_TOKEN(sym_endmacro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 49: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 50: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(54); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 51: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 52: - 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(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 53: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 54: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 55: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 56: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 57: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 58: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 59: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || lookahead == 'c') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 54: + case 60: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(75); + lookahead == 'c') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 55: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 56: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 57: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 58: + case 61: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || lookahead == 'c') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 59: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 60: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 61: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 62: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(73); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(72); + lookahead == 'd') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 64: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 65: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 66: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 67: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 68: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 69: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || lookahead == 'e') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 65: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 66: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(44); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 67: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 69: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 70: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(40); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 71: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(38); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 72: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(108); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 73: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + lookahead == 'f') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 74: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(78); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 75: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(41); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 76: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(42); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 77: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 78: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || lookahead == 'h') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - END_STATE(); - case 78: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 79: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(70); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 80: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(98); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 81: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(99); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 82: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(85); + lookahead == 'i') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 83: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(105); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(61); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 84: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(64); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 85: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(66); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 86: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(52); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 87: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(109); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(45); + lookahead == 'n') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 88: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(46); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 89: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(53); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 90: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(62); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 91: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(59); + lookahead == 'n') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 92: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(60); + lookahead == 'n') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 93: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 94: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 95: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - 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(110); - END_STATE(); - case 95: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(101); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 96: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(47); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 97: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(48); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 98: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(87); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 99: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(88); + lookahead == 'o') ADVANCE(105); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(104); + lookahead == 'o') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 101: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(67); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 102: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(96); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 103: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(97); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 104: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(68); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 105: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(65); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 106: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(80); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 107: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(81); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 108: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(94); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 109: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(77); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 110: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 114: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); default: return false; @@ -1551,327 +1598,584 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 1, .external_lex_state = 1}, [82] = {.lex_state = 1, .external_lex_state = 1}, [83] = {.lex_state = 1, .external_lex_state = 1}, - [84] = {.lex_state = 12, .external_lex_state = 2}, - [85] = {.lex_state = 13, .external_lex_state = 2}, - [86] = {.lex_state = 15, .external_lex_state = 2}, - [87] = {.lex_state = 14, .external_lex_state = 2}, - [88] = {.lex_state = 12, .external_lex_state = 2}, - [89] = {.lex_state = 12, .external_lex_state = 2}, - [90] = {.lex_state = 12, .external_lex_state = 2}, - [91] = {.lex_state = 13, .external_lex_state = 2}, - [92] = {.lex_state = 15, .external_lex_state = 2}, - [93] = {.lex_state = 14, .external_lex_state = 2}, - [94] = {.lex_state = 12, .external_lex_state = 2}, - [95] = {.lex_state = 14, .external_lex_state = 2}, - [96] = {.lex_state = 15, .external_lex_state = 2}, - [97] = {.lex_state = 13, .external_lex_state = 2}, - [98] = {.lex_state = 12, .external_lex_state = 2}, - [99] = {.lex_state = 14, .external_lex_state = 2}, - [100] = {.lex_state = 15, .external_lex_state = 2}, - [101] = {.lex_state = 13, .external_lex_state = 2}, - [102] = {.lex_state = 13, .external_lex_state = 2}, - [103] = {.lex_state = 14, .external_lex_state = 2}, - [104] = {.lex_state = 12, .external_lex_state = 2}, - [105] = {.lex_state = 14, .external_lex_state = 2}, - [106] = {.lex_state = 15, .external_lex_state = 2}, - [107] = {.lex_state = 13, .external_lex_state = 2}, - [108] = {.lex_state = 15, .external_lex_state = 2}, - [109] = {.lex_state = 13, .external_lex_state = 2}, - [110] = {.lex_state = 15, .external_lex_state = 2}, - [111] = {.lex_state = 14, .external_lex_state = 2}, + [84] = {.lex_state = 1, .external_lex_state = 1}, + [85] = {.lex_state = 1, .external_lex_state = 1}, + [86] = {.lex_state = 1, .external_lex_state = 1}, + [87] = {.lex_state = 1, .external_lex_state = 1}, + [88] = {.lex_state = 1, .external_lex_state = 1}, + [89] = {.lex_state = 1, .external_lex_state = 1}, + [90] = {.lex_state = 1, .external_lex_state = 1}, + [91] = {.lex_state = 1, .external_lex_state = 1}, + [92] = {.lex_state = 1, .external_lex_state = 1}, + [93] = {.lex_state = 1, .external_lex_state = 1}, + [94] = {.lex_state = 1, .external_lex_state = 1}, + [95] = {.lex_state = 1, .external_lex_state = 1}, + [96] = {.lex_state = 1, .external_lex_state = 1}, + [97] = {.lex_state = 1, .external_lex_state = 1}, + [98] = {.lex_state = 1, .external_lex_state = 1}, + [99] = {.lex_state = 1, .external_lex_state = 1}, + [100] = {.lex_state = 1, .external_lex_state = 1}, + [101] = {.lex_state = 1, .external_lex_state = 1}, + [102] = {.lex_state = 1, .external_lex_state = 1}, + [103] = {.lex_state = 1, .external_lex_state = 1}, + [104] = {.lex_state = 1, .external_lex_state = 1}, + [105] = {.lex_state = 1, .external_lex_state = 1}, + [106] = {.lex_state = 1, .external_lex_state = 1}, + [107] = {.lex_state = 1, .external_lex_state = 1}, + [108] = {.lex_state = 1, .external_lex_state = 1}, + [109] = {.lex_state = 1, .external_lex_state = 1}, + [110] = {.lex_state = 1, .external_lex_state = 1}, + [111] = {.lex_state = 1, .external_lex_state = 1}, [112] = {.lex_state = 12, .external_lex_state = 2}, [113] = {.lex_state = 15, .external_lex_state = 2}, - [114] = {.lex_state = 14, .external_lex_state = 2}, - [115] = {.lex_state = 13, .external_lex_state = 2}, - [116] = {.lex_state = 15, .external_lex_state = 2}, - [117] = {.lex_state = 14, .external_lex_state = 2}, - [118] = {.lex_state = 12, .external_lex_state = 2}, + [114] = {.lex_state = 13, .external_lex_state = 2}, + [115] = {.lex_state = 12, .external_lex_state = 2}, + [116] = {.lex_state = 14, .external_lex_state = 2}, + [117] = {.lex_state = 13, .external_lex_state = 2}, + [118] = {.lex_state = 14, .external_lex_state = 2}, [119] = {.lex_state = 15, .external_lex_state = 2}, [120] = {.lex_state = 14, .external_lex_state = 2}, [121] = {.lex_state = 13, .external_lex_state = 2}, - [122] = {.lex_state = 13, .external_lex_state = 2}, - [123] = {.lex_state = 12, .external_lex_state = 2}, - [124] = {.lex_state = 12, .external_lex_state = 2}, - [125] = {.lex_state = 12, .external_lex_state = 2}, - [126] = {.lex_state = 14, .external_lex_state = 2}, - [127] = {.lex_state = 14, .external_lex_state = 2}, - [128] = {.lex_state = 15, .external_lex_state = 2}, - [129] = {.lex_state = 13, .external_lex_state = 2}, - [130] = {.lex_state = 15, .external_lex_state = 2}, - [131] = {.lex_state = 13, .external_lex_state = 2}, - [132] = {.lex_state = 16, .external_lex_state = 2}, - [133] = {.lex_state = 12, .external_lex_state = 2}, - [134] = {.lex_state = 14, .external_lex_state = 2}, - [135] = {.lex_state = 16, .external_lex_state = 2}, - [136] = {.lex_state = 13, .external_lex_state = 2}, - [137] = {.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 = 2, .external_lex_state = 2}, - [141] = {.lex_state = 2, .external_lex_state = 2}, - [142] = {.lex_state = 1, .external_lex_state = 2}, - [143] = {.lex_state = 1, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 2, .external_lex_state = 2}, - [146] = {.lex_state = 1, .external_lex_state = 1}, - [147] = {.lex_state = 1, .external_lex_state = 1}, - [148] = {.lex_state = 1, .external_lex_state = 1}, - [149] = {.lex_state = 1, .external_lex_state = 1}, - [150] = {.lex_state = 1, .external_lex_state = 1}, - [151] = {.lex_state = 1, .external_lex_state = 1}, - [152] = {.lex_state = 1, .external_lex_state = 1}, - [153] = {.lex_state = 1, .external_lex_state = 1}, - [154] = {.lex_state = 3, .external_lex_state = 2}, - [155] = {.lex_state = 1, .external_lex_state = 2}, - [156] = {.lex_state = 3, .external_lex_state = 2}, - [157] = {.lex_state = 3, .external_lex_state = 2}, - [158] = {.lex_state = 3, .external_lex_state = 2}, - [159] = {.lex_state = 3, .external_lex_state = 2}, - [160] = {.lex_state = 2, .external_lex_state = 2}, - [161] = {.lex_state = 1, .external_lex_state = 2}, - [162] = {.lex_state = 3, .external_lex_state = 2}, - [163] = {.lex_state = 3, .external_lex_state = 2}, - [164] = {.lex_state = 2, .external_lex_state = 2}, - [165] = {.lex_state = 2, .external_lex_state = 2}, - [166] = {.lex_state = 3, .external_lex_state = 2}, - [167] = {.lex_state = 3, .external_lex_state = 2}, - [168] = {.lex_state = 3, .external_lex_state = 2}, - [169] = {.lex_state = 2, .external_lex_state = 2}, - [170] = {.lex_state = 1, .external_lex_state = 2}, - [171] = {.lex_state = 3, .external_lex_state = 2}, - [172] = {.lex_state = 1, .external_lex_state = 2}, - [173] = {.lex_state = 1, .external_lex_state = 2}, - [174] = {.lex_state = 2, .external_lex_state = 2}, - [175] = {.lex_state = 11, .external_lex_state = 2}, - [176] = {.lex_state = 11, .external_lex_state = 2}, - [177] = {.lex_state = 11, .external_lex_state = 2}, - [178] = {.lex_state = 11, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 11, .external_lex_state = 2}, - [181] = {.lex_state = 11, .external_lex_state = 2}, - [182] = {.lex_state = 11, .external_lex_state = 2}, - [183] = {.lex_state = 11, .external_lex_state = 2}, - [184] = {.lex_state = 11, .external_lex_state = 2}, - [185] = {.lex_state = 11, .external_lex_state = 2}, - [186] = {.lex_state = 11, .external_lex_state = 2}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 11, .external_lex_state = 2}, - [190] = {.lex_state = 11, .external_lex_state = 2}, - [191] = {.lex_state = 11, .external_lex_state = 2}, - [192] = {.lex_state = 11, .external_lex_state = 2}, - [193] = {.lex_state = 11, .external_lex_state = 2}, - [194] = {.lex_state = 11, .external_lex_state = 2}, - [195] = {.lex_state = 11, .external_lex_state = 2}, - [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 11, .external_lex_state = 2}, - [198] = {.lex_state = 11, .external_lex_state = 2}, - [199] = {.lex_state = 11, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 15, .external_lex_state = 2}, - [204] = {.lex_state = 16, .external_lex_state = 2}, - [205] = {.lex_state = 14, .external_lex_state = 2}, - [206] = {.lex_state = 14, .external_lex_state = 2}, - [207] = {.lex_state = 14, .external_lex_state = 2}, - [208] = {.lex_state = 14, .external_lex_state = 2}, - [209] = {.lex_state = 14, .external_lex_state = 2}, - [210] = {.lex_state = 14, .external_lex_state = 2}, - [211] = {.lex_state = 14, .external_lex_state = 2}, - [212] = {.lex_state = 14, .external_lex_state = 2}, - [213] = {.lex_state = 14, .external_lex_state = 2}, - [214] = {.lex_state = 14, .external_lex_state = 2}, - [215] = {.lex_state = 14, .external_lex_state = 2}, - [216] = {.lex_state = 14, .external_lex_state = 2}, - [217] = {.lex_state = 14, .external_lex_state = 2}, - [218] = {.lex_state = 14, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, - [221] = {.lex_state = 15, .external_lex_state = 2}, - [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 15, .external_lex_state = 2}, - [224] = {.lex_state = 15, .external_lex_state = 2}, - [225] = {.lex_state = 15, .external_lex_state = 2}, - [226] = {.lex_state = 15, .external_lex_state = 2}, - [227] = {.lex_state = 15, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, - [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.lex_state = 15, .external_lex_state = 2}, - [233] = {.lex_state = 15, .external_lex_state = 2}, - [234] = {.lex_state = 15, .external_lex_state = 2}, - [235] = {.lex_state = 15, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 15, .external_lex_state = 2}, - [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, - [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, - [244] = {.lex_state = 13, .external_lex_state = 2}, - [245] = {.lex_state = 13, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 13, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 13, .external_lex_state = 2}, - [251] = {.lex_state = 13, .external_lex_state = 2}, - [252] = {.lex_state = 13, .external_lex_state = 2}, - [253] = {.lex_state = 13, .external_lex_state = 2}, - [254] = {.lex_state = 13, .external_lex_state = 2}, - [255] = {.lex_state = 13, .external_lex_state = 2}, - [256] = {.lex_state = 13, .external_lex_state = 2}, - [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 13, .external_lex_state = 2}, - [259] = {.lex_state = 13, .external_lex_state = 2}, - [260] = {.lex_state = 13, .external_lex_state = 2}, - [261] = {.lex_state = 13, .external_lex_state = 2}, - [262] = {.lex_state = 12, .external_lex_state = 2}, - [263] = {.lex_state = 12, .external_lex_state = 2}, - [264] = {.lex_state = 12, .external_lex_state = 2}, - [265] = {.lex_state = 12, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, - [267] = {.lex_state = 12, .external_lex_state = 2}, - [268] = {.lex_state = 16, .external_lex_state = 2}, - [269] = {.lex_state = 16, .external_lex_state = 2}, + [122] = {.lex_state = 15, .external_lex_state = 2}, + [123] = {.lex_state = 13, .external_lex_state = 2}, + [124] = {.lex_state = 15, .external_lex_state = 2}, + [125] = {.lex_state = 14, .external_lex_state = 2}, + [126] = {.lex_state = 13, .external_lex_state = 2}, + [127] = {.lex_state = 12, .external_lex_state = 2}, + [128] = {.lex_state = 13, .external_lex_state = 2}, + [129] = {.lex_state = 14, .external_lex_state = 2}, + [130] = {.lex_state = 12, .external_lex_state = 2}, + [131] = {.lex_state = 15, .external_lex_state = 2}, + [132] = {.lex_state = 13, .external_lex_state = 2}, + [133] = {.lex_state = 14, .external_lex_state = 2}, + [134] = {.lex_state = 15, .external_lex_state = 2}, + [135] = {.lex_state = 12, .external_lex_state = 2}, + [136] = {.lex_state = 14, .external_lex_state = 2}, + [137] = {.lex_state = 14, .external_lex_state = 2}, + [138] = {.lex_state = 13, .external_lex_state = 2}, + [139] = {.lex_state = 12, .external_lex_state = 2}, + [140] = {.lex_state = 15, .external_lex_state = 2}, + [141] = {.lex_state = 13, .external_lex_state = 2}, + [142] = {.lex_state = 12, .external_lex_state = 2}, + [143] = {.lex_state = 12, .external_lex_state = 2}, + [144] = {.lex_state = 15, .external_lex_state = 2}, + [145] = {.lex_state = 12, .external_lex_state = 2}, + [146] = {.lex_state = 14, .external_lex_state = 2}, + [147] = {.lex_state = 14, .external_lex_state = 2}, + [148] = {.lex_state = 12, .external_lex_state = 2}, + [149] = {.lex_state = 13, .external_lex_state = 2}, + [150] = {.lex_state = 14, .external_lex_state = 2}, + [151] = {.lex_state = 15, .external_lex_state = 2}, + [152] = {.lex_state = 15, .external_lex_state = 2}, + [153] = {.lex_state = 12, .external_lex_state = 2}, + [154] = {.lex_state = 13, .external_lex_state = 2}, + [155] = {.lex_state = 14, .external_lex_state = 2}, + [156] = {.lex_state = 12, .external_lex_state = 2}, + [157] = {.lex_state = 13, .external_lex_state = 2}, + [158] = {.lex_state = 15, .external_lex_state = 2}, + [159] = {.lex_state = 15, .external_lex_state = 2}, + [160] = {.lex_state = 0, .external_lex_state = 1}, + [161] = {.lex_state = 13, .external_lex_state = 2}, + [162] = {.lex_state = 15, .external_lex_state = 2}, + [163] = {.lex_state = 0, .external_lex_state = 1}, + [164] = {.lex_state = 16, .external_lex_state = 2}, + [165] = {.lex_state = 0, .external_lex_state = 1}, + [166] = {.lex_state = 0, .external_lex_state = 1}, + [167] = {.lex_state = 0, .external_lex_state = 1}, + [168] = {.lex_state = 16, .external_lex_state = 2}, + [169] = {.lex_state = 0, .external_lex_state = 1}, + [170] = {.lex_state = 0, .external_lex_state = 1}, + [171] = {.lex_state = 0, .external_lex_state = 1}, + [172] = {.lex_state = 0, .external_lex_state = 1}, + [173] = {.lex_state = 0, .external_lex_state = 1}, + [174] = {.lex_state = 0, .external_lex_state = 1}, + [175] = {.lex_state = 14, .external_lex_state = 2}, + [176] = {.lex_state = 0, .external_lex_state = 1}, + [177] = {.lex_state = 12, .external_lex_state = 2}, + [178] = {.lex_state = 0, .external_lex_state = 1}, + [179] = {.lex_state = 0, .external_lex_state = 1}, + [180] = {.lex_state = 0, .external_lex_state = 1}, + [181] = {.lex_state = 0, .external_lex_state = 1}, + [182] = {.lex_state = 0, .external_lex_state = 1}, + [183] = {.lex_state = 0, .external_lex_state = 1}, + [184] = {.lex_state = 0, .external_lex_state = 1}, + [185] = {.lex_state = 0, .external_lex_state = 1}, + [186] = {.lex_state = 0, .external_lex_state = 1}, + [187] = {.lex_state = 0, .external_lex_state = 1}, + [188] = {.lex_state = 0, .external_lex_state = 1}, + [189] = {.lex_state = 0, .external_lex_state = 1}, + [190] = {.lex_state = 0, .external_lex_state = 1}, + [191] = {.lex_state = 0, .external_lex_state = 1}, + [192] = {.lex_state = 0, .external_lex_state = 1}, + [193] = {.lex_state = 0, .external_lex_state = 1}, + [194] = {.lex_state = 0, .external_lex_state = 1}, + [195] = {.lex_state = 0, .external_lex_state = 1}, + [196] = {.lex_state = 0, .external_lex_state = 1}, + [197] = {.lex_state = 0, .external_lex_state = 1}, + [198] = {.lex_state = 0, .external_lex_state = 1}, + [199] = {.lex_state = 0, .external_lex_state = 1}, + [200] = {.lex_state = 0, .external_lex_state = 1}, + [201] = {.lex_state = 0, .external_lex_state = 1}, + [202] = {.lex_state = 0, .external_lex_state = 1}, + [203] = {.lex_state = 0, .external_lex_state = 1}, + [204] = {.lex_state = 1, .external_lex_state = 1}, + [205] = {.lex_state = 1, .external_lex_state = 1}, + [206] = {.lex_state = 2, .external_lex_state = 2}, + [207] = {.lex_state = 2, .external_lex_state = 2}, + [208] = {.lex_state = 2, .external_lex_state = 2}, + [209] = {.lex_state = 0, .external_lex_state = 2}, + [210] = {.lex_state = 2, .external_lex_state = 2}, + [211] = {.lex_state = 0, .external_lex_state = 2}, + [212] = {.lex_state = 2, .external_lex_state = 2}, + [213] = {.lex_state = 38, .external_lex_state = 2}, + [214] = {.lex_state = 38, .external_lex_state = 2}, + [215] = {.lex_state = 1, .external_lex_state = 1}, + [216] = {.lex_state = 1, .external_lex_state = 1}, + [217] = {.lex_state = 1, .external_lex_state = 1}, + [218] = {.lex_state = 1, .external_lex_state = 1}, + [219] = {.lex_state = 1, .external_lex_state = 1}, + [220] = {.lex_state = 1, .external_lex_state = 1}, + [221] = {.lex_state = 1, .external_lex_state = 1}, + [222] = {.lex_state = 1, .external_lex_state = 1}, + [223] = {.lex_state = 11, .external_lex_state = 2}, + [224] = {.lex_state = 38, .external_lex_state = 2}, + [225] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 11, .external_lex_state = 2}, + [227] = {.lex_state = 11, .external_lex_state = 2}, + [228] = {.lex_state = 11, .external_lex_state = 2}, + [229] = {.lex_state = 3, .external_lex_state = 2}, + [230] = {.lex_state = 11, .external_lex_state = 2}, + [231] = {.lex_state = 11, .external_lex_state = 2}, + [232] = {.lex_state = 11, .external_lex_state = 2}, + [233] = {.lex_state = 11, .external_lex_state = 2}, + [234] = {.lex_state = 2, .external_lex_state = 2}, + [235] = {.lex_state = 0, .external_lex_state = 2}, + [236] = {.lex_state = 11, .external_lex_state = 2}, + [237] = {.lex_state = 3, .external_lex_state = 2}, + [238] = {.lex_state = 3, .external_lex_state = 2}, + [239] = {.lex_state = 3, .external_lex_state = 2}, + [240] = {.lex_state = 11, .external_lex_state = 2}, + [241] = {.lex_state = 11, .external_lex_state = 2}, + [242] = {.lex_state = 11, .external_lex_state = 2}, + [243] = {.lex_state = 11, .external_lex_state = 2}, + [244] = {.lex_state = 11, .external_lex_state = 2}, + [245] = {.lex_state = 11, .external_lex_state = 2}, + [246] = {.lex_state = 2, .external_lex_state = 2}, + [247] = {.lex_state = 11, .external_lex_state = 2}, + [248] = {.lex_state = 3, .external_lex_state = 2}, + [249] = {.lex_state = 0, .external_lex_state = 2}, + [250] = {.lex_state = 11, .external_lex_state = 2}, + [251] = {.lex_state = 11, .external_lex_state = 2}, + [252] = {.lex_state = 11, .external_lex_state = 2}, + [253] = {.lex_state = 11, .external_lex_state = 2}, + [254] = {.lex_state = 11, .external_lex_state = 2}, + [255] = {.lex_state = 11, .external_lex_state = 2}, + [256] = {.lex_state = 11, .external_lex_state = 2}, + [257] = {.lex_state = 0, .external_lex_state = 2}, + [258] = {.lex_state = 0, .external_lex_state = 2}, + [259] = {.lex_state = 3, .external_lex_state = 2}, + [260] = {.lex_state = 3, .external_lex_state = 2}, + [261] = {.lex_state = 3, .external_lex_state = 2}, + [262] = {.lex_state = 3, .external_lex_state = 2}, + [263] = {.lex_state = 11, .external_lex_state = 2}, + [264] = {.lex_state = 3, .external_lex_state = 2}, + [265] = {.lex_state = 3, .external_lex_state = 2}, + [266] = {.lex_state = 11, .external_lex_state = 2}, + [267] = {.lex_state = 11, .external_lex_state = 2}, + [268] = {.lex_state = 3, .external_lex_state = 2}, + [269] = {.lex_state = 11, .external_lex_state = 2}, [270] = {.lex_state = 3, .external_lex_state = 2}, - [271] = {.lex_state = 16, .external_lex_state = 2}, - [272] = {.lex_state = 16, .external_lex_state = 2}, - [273] = {.lex_state = 16, .external_lex_state = 2}, - [274] = {.lex_state = 12, .external_lex_state = 2}, - [275] = {.lex_state = 14, .external_lex_state = 2}, - [276] = {.lex_state = 14, .external_lex_state = 2}, - [277] = {.lex_state = 14, .external_lex_state = 2}, - [278] = {.lex_state = 14, .external_lex_state = 2}, - [279] = {.lex_state = 14, .external_lex_state = 2}, - [280] = {.lex_state = 14, .external_lex_state = 2}, - [281] = {.lex_state = 16, .external_lex_state = 2}, - [282] = {.lex_state = 16, .external_lex_state = 2}, - [283] = {.lex_state = 16, .external_lex_state = 2}, - [284] = {.lex_state = 16, .external_lex_state = 2}, - [285] = {.lex_state = 16, .external_lex_state = 2}, - [286] = {.lex_state = 14, .external_lex_state = 2}, - [287] = {.lex_state = 12, .external_lex_state = 2}, - [288] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, - [294] = {.lex_state = 12, .external_lex_state = 2}, - [295] = {.lex_state = 12, .external_lex_state = 2}, - [296] = {.lex_state = 16, .external_lex_state = 2}, - [297] = {.lex_state = 14, .external_lex_state = 2}, - [298] = {.lex_state = 15, .external_lex_state = 2}, - [299] = {.lex_state = 16, .external_lex_state = 2}, + [271] = {.lex_state = 11, .external_lex_state = 2}, + [272] = {.lex_state = 0, .external_lex_state = 2}, + [273] = {.lex_state = 38, .external_lex_state = 2}, + [274] = {.lex_state = 11, .external_lex_state = 2}, + [275] = {.lex_state = 11, .external_lex_state = 2}, + [276] = {.lex_state = 2, .external_lex_state = 2}, + [277] = {.lex_state = 3, .external_lex_state = 2}, + [278] = {.lex_state = 11, .external_lex_state = 2}, + [279] = {.lex_state = 11, .external_lex_state = 2}, + [280] = {.lex_state = 11, .external_lex_state = 2}, + [281] = {.lex_state = 11, .external_lex_state = 2}, + [282] = {.lex_state = 11, .external_lex_state = 2}, + [283] = {.lex_state = 11, .external_lex_state = 2}, + [284] = {.lex_state = 2, .external_lex_state = 2}, + [285] = {.lex_state = 2, .external_lex_state = 2}, + [286] = {.lex_state = 38, .external_lex_state = 2}, + [287] = {.lex_state = 11, .external_lex_state = 2}, + [288] = {.lex_state = 11, .external_lex_state = 2}, + [289] = {.lex_state = 38, .external_lex_state = 2}, + [290] = {.lex_state = 38, .external_lex_state = 2}, + [291] = {.lex_state = 11, .external_lex_state = 2}, + [292] = {.lex_state = 14, .external_lex_state = 2}, + [293] = {.lex_state = 13, .external_lex_state = 2}, + [294] = {.lex_state = 13, .external_lex_state = 2}, + [295] = {.lex_state = 13, .external_lex_state = 2}, + [296] = {.lex_state = 13, .external_lex_state = 2}, + [297] = {.lex_state = 13, .external_lex_state = 2}, + [298] = {.lex_state = 13, .external_lex_state = 2}, + [299] = {.lex_state = 13, .external_lex_state = 2}, [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 16, .external_lex_state = 2}, - [302] = {.lex_state = 16, .external_lex_state = 2}, - [303] = {.lex_state = 16, .external_lex_state = 2}, - [304] = {.lex_state = 16, .external_lex_state = 2}, - [305] = {.lex_state = 14, .external_lex_state = 2}, - [306] = {.lex_state = 16, .external_lex_state = 2}, + [301] = {.lex_state = 13, .external_lex_state = 2}, + [302] = {.lex_state = 13, .external_lex_state = 2}, + [303] = {.lex_state = 13, .external_lex_state = 2}, + [304] = {.lex_state = 12, .external_lex_state = 2}, + [305] = {.lex_state = 12, .external_lex_state = 2}, + [306] = {.lex_state = 12, .external_lex_state = 2}, [307] = {.lex_state = 12, .external_lex_state = 2}, [308] = {.lex_state = 12, .external_lex_state = 2}, - [309] = {.lex_state = 16, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, - [311] = {.lex_state = 15, .external_lex_state = 2}, - [312] = {.lex_state = 14, .external_lex_state = 2}, + [309] = {.lex_state = 12, .external_lex_state = 2}, + [310] = {.lex_state = 12, .external_lex_state = 2}, + [311] = {.lex_state = 12, .external_lex_state = 2}, + [312] = {.lex_state = 12, .external_lex_state = 2}, [313] = {.lex_state = 12, .external_lex_state = 2}, [314] = {.lex_state = 12, .external_lex_state = 2}, - [315] = {.lex_state = 16, .external_lex_state = 2}, - [316] = {.lex_state = 16, .external_lex_state = 2}, - [317] = {.lex_state = 16, .external_lex_state = 2}, + [315] = {.lex_state = 12, .external_lex_state = 2}, + [316] = {.lex_state = 12, .external_lex_state = 2}, + [317] = {.lex_state = 12, .external_lex_state = 2}, [318] = {.lex_state = 12, .external_lex_state = 2}, [319] = {.lex_state = 12, .external_lex_state = 2}, [320] = {.lex_state = 12, .external_lex_state = 2}, [321] = {.lex_state = 12, .external_lex_state = 2}, - [322] = {.lex_state = 0, .external_lex_state = 2}, - [323] = {.lex_state = 16, .external_lex_state = 2}, - [324] = {.lex_state = 0, .external_lex_state = 2}, - [325] = {.lex_state = 0, .external_lex_state = 2}, - [326] = {.lex_state = 0, .external_lex_state = 2}, - [327] = {.lex_state = 0, .external_lex_state = 2}, - [328] = {.lex_state = 0, .external_lex_state = 2}, - [329] = {.lex_state = 0, .external_lex_state = 2}, - [330] = {.lex_state = 0, .external_lex_state = 2}, - [331] = {.lex_state = 16, .external_lex_state = 2}, - [332] = {.lex_state = 16, .external_lex_state = 2}, - [333] = {.lex_state = 0, .external_lex_state = 2}, - [334] = {.lex_state = 0, .external_lex_state = 2}, - [335] = {.lex_state = 0, .external_lex_state = 2}, - [336] = {.lex_state = 16, .external_lex_state = 2}, - [337] = {.lex_state = 16, .external_lex_state = 2}, - [338] = {.lex_state = 0, .external_lex_state = 2}, - [339] = {.lex_state = 0, .external_lex_state = 2}, - [340] = {.lex_state = 0, .external_lex_state = 2}, - [341] = {.lex_state = 16, .external_lex_state = 2}, - [342] = {.lex_state = 16, .external_lex_state = 2}, - [343] = {.lex_state = 16, .external_lex_state = 2}, - [344] = {.lex_state = 0, .external_lex_state = 2}, - [345] = {.lex_state = 0, .external_lex_state = 2}, - [346] = {.lex_state = 16, .external_lex_state = 2}, - [347] = {.lex_state = 0, .external_lex_state = 2}, - [348] = {.lex_state = 0, .external_lex_state = 2}, - [349] = {.lex_state = 0, .external_lex_state = 2}, - [350] = {.lex_state = 0, .external_lex_state = 2}, - [351] = {.lex_state = 0, .external_lex_state = 2}, - [352] = {.lex_state = 0, .external_lex_state = 2}, - [353] = {.lex_state = 0, .external_lex_state = 2}, - [354] = {.lex_state = 0, .external_lex_state = 2}, - [355] = {.lex_state = 0, .external_lex_state = 2}, - [356] = {.lex_state = 0, .external_lex_state = 2}, - [357] = {.lex_state = 0, .external_lex_state = 2}, - [358] = {.lex_state = 0, .external_lex_state = 2}, - [359] = {.lex_state = 0, .external_lex_state = 2}, - [360] = {.lex_state = 0, .external_lex_state = 2}, - [361] = {.lex_state = 0, .external_lex_state = 2}, - [362] = {.lex_state = 0, .external_lex_state = 2}, - [363] = {.lex_state = 16, .external_lex_state = 2}, - [364] = {.lex_state = 0, .external_lex_state = 2}, - [365] = {.lex_state = 0, .external_lex_state = 2}, - [366] = {.lex_state = 0, .external_lex_state = 2}, - [367] = {.lex_state = 0, .external_lex_state = 2}, - [368] = {.lex_state = 0, .external_lex_state = 2}, - [369] = {.lex_state = 0, .external_lex_state = 2}, - [370] = {.lex_state = 0, .external_lex_state = 2}, - [371] = {.lex_state = 0, .external_lex_state = 2}, - [372] = {.lex_state = 0, .external_lex_state = 2}, - [373] = {.lex_state = 16, .external_lex_state = 2}, - [374] = {.lex_state = 0, .external_lex_state = 2}, - [375] = {.lex_state = 0, .external_lex_state = 2}, - [376] = {.lex_state = 0, .external_lex_state = 2}, - [377] = {.lex_state = 0, .external_lex_state = 2}, - [378] = {.lex_state = 0, .external_lex_state = 2}, - [379] = {.lex_state = 0, .external_lex_state = 2}, - [380] = {.lex_state = 0, .external_lex_state = 2}, - [381] = {.lex_state = 0, .external_lex_state = 2}, - [382] = {.lex_state = 0, .external_lex_state = 2}, - [383] = {.lex_state = 0, .external_lex_state = 2}, - [384] = {.lex_state = 0, .external_lex_state = 2}, - [385] = {.lex_state = 0, .external_lex_state = 2}, - [386] = {.lex_state = 0, .external_lex_state = 2}, - [387] = {.lex_state = 0, .external_lex_state = 2}, - [388] = {.lex_state = 0, .external_lex_state = 2}, - [389] = {.lex_state = 0, .external_lex_state = 2}, - [390] = {.lex_state = 0, .external_lex_state = 2}, - [391] = {.lex_state = 0, .external_lex_state = 2}, - [392] = {.lex_state = 0, .external_lex_state = 2}, - [393] = {.lex_state = 0, .external_lex_state = 2}, - [394] = {.lex_state = 0, .external_lex_state = 2}, - [395] = {.lex_state = 0, .external_lex_state = 2}, - [396] = {.lex_state = 0, .external_lex_state = 2}, - [397] = {.lex_state = 0, .external_lex_state = 2}, - [398] = {.lex_state = 0, .external_lex_state = 2}, - [399] = {.lex_state = 0, .external_lex_state = 2}, - [400] = {.lex_state = 0, .external_lex_state = 2}, - [401] = {.lex_state = 16, .external_lex_state = 2}, - [402] = {.lex_state = 16, .external_lex_state = 2}, - [403] = {.lex_state = 16, .external_lex_state = 2}, + [322] = {.lex_state = 12, .external_lex_state = 2}, + [323] = {.lex_state = 12, .external_lex_state = 2}, + [324] = {.lex_state = 12, .external_lex_state = 2}, + [325] = {.lex_state = 12, .external_lex_state = 2}, + [326] = {.lex_state = 12, .external_lex_state = 2}, + [327] = {.lex_state = 12, .external_lex_state = 2}, + [328] = {.lex_state = 12, .external_lex_state = 2}, + [329] = {.lex_state = 12, .external_lex_state = 2}, + [330] = {.lex_state = 12, .external_lex_state = 2}, + [331] = {.lex_state = 12, .external_lex_state = 2}, + [332] = {.lex_state = 12, .external_lex_state = 2}, + [333] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 14, .external_lex_state = 2}, + [335] = {.lex_state = 14, .external_lex_state = 2}, + [336] = {.lex_state = 14, .external_lex_state = 2}, + [337] = {.lex_state = 14, .external_lex_state = 2}, + [338] = {.lex_state = 14, .external_lex_state = 2}, + [339] = {.lex_state = 14, .external_lex_state = 2}, + [340] = {.lex_state = 14, .external_lex_state = 2}, + [341] = {.lex_state = 14, .external_lex_state = 2}, + [342] = {.lex_state = 14, .external_lex_state = 2}, + [343] = {.lex_state = 14, .external_lex_state = 2}, + [344] = {.lex_state = 14, .external_lex_state = 2}, + [345] = {.lex_state = 14, .external_lex_state = 2}, + [346] = {.lex_state = 14, .external_lex_state = 2}, + [347] = {.lex_state = 14, .external_lex_state = 2}, + [348] = {.lex_state = 14, .external_lex_state = 2}, + [349] = {.lex_state = 14, .external_lex_state = 2}, + [350] = {.lex_state = 14, .external_lex_state = 2}, + [351] = {.lex_state = 14, .external_lex_state = 2}, + [352] = {.lex_state = 14, .external_lex_state = 2}, + [353] = {.lex_state = 14, .external_lex_state = 2}, + [354] = {.lex_state = 14, .external_lex_state = 2}, + [355] = {.lex_state = 14, .external_lex_state = 2}, + [356] = {.lex_state = 14, .external_lex_state = 2}, + [357] = {.lex_state = 14, .external_lex_state = 2}, + [358] = {.lex_state = 14, .external_lex_state = 2}, + [359] = {.lex_state = 14, .external_lex_state = 2}, + [360] = {.lex_state = 14, .external_lex_state = 2}, + [361] = {.lex_state = 14, .external_lex_state = 2}, + [362] = {.lex_state = 14, .external_lex_state = 2}, + [363] = {.lex_state = 14, .external_lex_state = 2}, + [364] = {.lex_state = 15, .external_lex_state = 2}, + [365] = {.lex_state = 13, .external_lex_state = 2}, + [366] = {.lex_state = 13, .external_lex_state = 2}, + [367] = {.lex_state = 13, .external_lex_state = 2}, + [368] = {.lex_state = 13, .external_lex_state = 2}, + [369] = {.lex_state = 13, .external_lex_state = 2}, + [370] = {.lex_state = 13, .external_lex_state = 2}, + [371] = {.lex_state = 13, .external_lex_state = 2}, + [372] = {.lex_state = 13, .external_lex_state = 2}, + [373] = {.lex_state = 13, .external_lex_state = 2}, + [374] = {.lex_state = 13, .external_lex_state = 2}, + [375] = {.lex_state = 13, .external_lex_state = 2}, + [376] = {.lex_state = 13, .external_lex_state = 2}, + [377] = {.lex_state = 13, .external_lex_state = 2}, + [378] = {.lex_state = 13, .external_lex_state = 2}, + [379] = {.lex_state = 13, .external_lex_state = 2}, + [380] = {.lex_state = 13, .external_lex_state = 2}, + [381] = {.lex_state = 13, .external_lex_state = 2}, + [382] = {.lex_state = 13, .external_lex_state = 2}, + [383] = {.lex_state = 13, .external_lex_state = 2}, + [384] = {.lex_state = 15, .external_lex_state = 2}, + [385] = {.lex_state = 15, .external_lex_state = 2}, + [386] = {.lex_state = 15, .external_lex_state = 2}, + [387] = {.lex_state = 15, .external_lex_state = 2}, + [388] = {.lex_state = 15, .external_lex_state = 2}, + [389] = {.lex_state = 15, .external_lex_state = 2}, + [390] = {.lex_state = 15, .external_lex_state = 2}, + [391] = {.lex_state = 15, .external_lex_state = 2}, + [392] = {.lex_state = 15, .external_lex_state = 2}, + [393] = {.lex_state = 15, .external_lex_state = 2}, + [394] = {.lex_state = 15, .external_lex_state = 2}, + [395] = {.lex_state = 16, .external_lex_state = 2}, + [396] = {.lex_state = 16, .external_lex_state = 2}, + [397] = {.lex_state = 15, .external_lex_state = 2}, + [398] = {.lex_state = 15, .external_lex_state = 2}, + [399] = {.lex_state = 16, .external_lex_state = 2}, + [400] = {.lex_state = 15, .external_lex_state = 2}, + [401] = {.lex_state = 15, .external_lex_state = 2}, + [402] = {.lex_state = 13, .external_lex_state = 2}, + [403] = {.lex_state = 15, .external_lex_state = 2}, [404] = {.lex_state = 16, .external_lex_state = 2}, + [405] = {.lex_state = 12, .external_lex_state = 2}, + [406] = {.lex_state = 16, .external_lex_state = 2}, + [407] = {.lex_state = 15, .external_lex_state = 2}, + [408] = {.lex_state = 15, .external_lex_state = 2}, + [409] = {.lex_state = 15, .external_lex_state = 2}, + [410] = {.lex_state = 15, .external_lex_state = 2}, + [411] = {.lex_state = 16, .external_lex_state = 2}, + [412] = {.lex_state = 16, .external_lex_state = 2}, + [413] = {.lex_state = 16, .external_lex_state = 2}, + [414] = {.lex_state = 14, .external_lex_state = 2}, + [415] = {.lex_state = 16, .external_lex_state = 2}, + [416] = {.lex_state = 16, .external_lex_state = 2}, + [417] = {.lex_state = 16, .external_lex_state = 2}, + [418] = {.lex_state = 16, .external_lex_state = 2}, + [419] = {.lex_state = 16, .external_lex_state = 2}, + [420] = {.lex_state = 16, .external_lex_state = 2}, + [421] = {.lex_state = 15, .external_lex_state = 2}, + [422] = {.lex_state = 16, .external_lex_state = 2}, + [423] = {.lex_state = 16, .external_lex_state = 2}, + [424] = {.lex_state = 16, .external_lex_state = 2}, + [425] = {.lex_state = 15, .external_lex_state = 2}, + [426] = {.lex_state = 15, .external_lex_state = 2}, + [427] = {.lex_state = 16, .external_lex_state = 2}, + [428] = {.lex_state = 15, .external_lex_state = 2}, + [429] = {.lex_state = 15, .external_lex_state = 2}, + [430] = {.lex_state = 15, .external_lex_state = 2}, + [431] = {.lex_state = 16, .external_lex_state = 2}, + [432] = {.lex_state = 13, .external_lex_state = 2}, + [433] = {.lex_state = 12, .external_lex_state = 2}, + [434] = {.lex_state = 14, .external_lex_state = 2}, + [435] = {.lex_state = 15, .external_lex_state = 2}, + [436] = {.lex_state = 12, .external_lex_state = 2}, + [437] = {.lex_state = 13, .external_lex_state = 2}, + [438] = {.lex_state = 16, .external_lex_state = 2}, + [439] = {.lex_state = 15, .external_lex_state = 2}, + [440] = {.lex_state = 16, .external_lex_state = 2}, + [441] = {.lex_state = 16, .external_lex_state = 2}, + [442] = {.lex_state = 15, .external_lex_state = 2}, + [443] = {.lex_state = 16, .external_lex_state = 2}, + [444] = {.lex_state = 16, .external_lex_state = 2}, + [445] = {.lex_state = 16, .external_lex_state = 2}, + [446] = {.lex_state = 16, .external_lex_state = 2}, + [447] = {.lex_state = 16, .external_lex_state = 2}, + [448] = {.lex_state = 16, .external_lex_state = 2}, + [449] = {.lex_state = 16, .external_lex_state = 2}, + [450] = {.lex_state = 16, .external_lex_state = 2}, + [451] = {.lex_state = 15, .external_lex_state = 2}, + [452] = {.lex_state = 15, .external_lex_state = 2}, + [453] = {.lex_state = 15, .external_lex_state = 2}, + [454] = {.lex_state = 3, .external_lex_state = 2}, + [455] = {.lex_state = 3, .external_lex_state = 2}, + [456] = {.lex_state = 3, .external_lex_state = 2}, + [457] = {.lex_state = 3, .external_lex_state = 2}, + [458] = {.lex_state = 3, .external_lex_state = 2}, + [459] = {.lex_state = 3, .external_lex_state = 2}, + [460] = {.lex_state = 3, .external_lex_state = 2}, + [461] = {.lex_state = 3, .external_lex_state = 2}, + [462] = {.lex_state = 3, .external_lex_state = 2}, + [463] = {.lex_state = 3, .external_lex_state = 2}, + [464] = {.lex_state = 3, .external_lex_state = 2}, + [465] = {.lex_state = 3, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, + [469] = {.lex_state = 3, .external_lex_state = 2}, + [470] = {.lex_state = 3, .external_lex_state = 2}, + [471] = {.lex_state = 3, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, + [473] = {.lex_state = 3, .external_lex_state = 2}, + [474] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, + [476] = {.lex_state = 3, .external_lex_state = 2}, + [477] = {.lex_state = 3, .external_lex_state = 2}, + [478] = {.lex_state = 3, .external_lex_state = 2}, + [479] = {.lex_state = 3, .external_lex_state = 2}, + [480] = {.lex_state = 3, .external_lex_state = 2}, + [481] = {.lex_state = 3, .external_lex_state = 2}, + [482] = {.lex_state = 3, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, + [484] = {.lex_state = 3, .external_lex_state = 2}, + [485] = {.lex_state = 3, .external_lex_state = 2}, + [486] = {.lex_state = 3, .external_lex_state = 2}, + [487] = {.lex_state = 3, .external_lex_state = 2}, + [488] = {.lex_state = 3, .external_lex_state = 2}, + [489] = {.lex_state = 3, .external_lex_state = 2}, + [490] = {.lex_state = 3, .external_lex_state = 2}, + [491] = {.lex_state = 3, .external_lex_state = 2}, + [492] = {.lex_state = 3, .external_lex_state = 2}, + [493] = {.lex_state = 3, .external_lex_state = 2}, + [494] = {.lex_state = 3, .external_lex_state = 2}, + [495] = {.lex_state = 3, .external_lex_state = 2}, + [496] = {.lex_state = 3, .external_lex_state = 2}, + [497] = {.lex_state = 3, .external_lex_state = 2}, + [498] = {.lex_state = 3, .external_lex_state = 2}, + [499] = {.lex_state = 3, .external_lex_state = 2}, + [500] = {.lex_state = 3, .external_lex_state = 2}, + [501] = {.lex_state = 3, .external_lex_state = 2}, + [502] = {.lex_state = 3, .external_lex_state = 2}, + [503] = {.lex_state = 3, .external_lex_state = 2}, + [504] = {.lex_state = 3, .external_lex_state = 2}, + [505] = {.lex_state = 3, .external_lex_state = 2}, + [506] = {.lex_state = 3, .external_lex_state = 2}, + [507] = {.lex_state = 3, .external_lex_state = 2}, + [508] = {.lex_state = 3, .external_lex_state = 2}, + [509] = {.lex_state = 3, .external_lex_state = 2}, + [510] = {.lex_state = 3, .external_lex_state = 2}, + [511] = {.lex_state = 3, .external_lex_state = 2}, + [512] = {.lex_state = 3, .external_lex_state = 2}, + [513] = {.lex_state = 3, .external_lex_state = 2}, + [514] = {.lex_state = 3, .external_lex_state = 2}, + [515] = {.lex_state = 3, .external_lex_state = 2}, + [516] = {.lex_state = 3, .external_lex_state = 2}, + [517] = {.lex_state = 3, .external_lex_state = 2}, + [518] = {.lex_state = 3, .external_lex_state = 2}, + [519] = {.lex_state = 3, .external_lex_state = 2}, + [520] = {.lex_state = 3, .external_lex_state = 2}, + [521] = {.lex_state = 3, .external_lex_state = 2}, + [522] = {.lex_state = 3, .external_lex_state = 2}, + [523] = {.lex_state = 3, .external_lex_state = 2}, + [524] = {.lex_state = 3, .external_lex_state = 2}, + [525] = {.lex_state = 3, .external_lex_state = 2}, + [526] = {.lex_state = 3, .external_lex_state = 2}, + [527] = {.lex_state = 3, .external_lex_state = 2}, + [528] = {.lex_state = 3, .external_lex_state = 2}, + [529] = {.lex_state = 3, .external_lex_state = 2}, + [530] = {.lex_state = 3, .external_lex_state = 2}, + [531] = {.lex_state = 3, .external_lex_state = 2}, + [532] = {.lex_state = 3, .external_lex_state = 2}, + [533] = {.lex_state = 3, .external_lex_state = 2}, + [534] = {.lex_state = 3, .external_lex_state = 2}, + [535] = {.lex_state = 3, .external_lex_state = 2}, + [536] = {.lex_state = 3, .external_lex_state = 2}, + [537] = {.lex_state = 3, .external_lex_state = 2}, + [538] = {.lex_state = 3, .external_lex_state = 2}, + [539] = {.lex_state = 3, .external_lex_state = 2}, + [540] = {.lex_state = 3, .external_lex_state = 2}, + [541] = {.lex_state = 3, .external_lex_state = 2}, + [542] = {.lex_state = 39, .external_lex_state = 2}, + [543] = {.lex_state = 39, .external_lex_state = 2}, + [544] = {.lex_state = 39, .external_lex_state = 2}, + [545] = {.lex_state = 39, .external_lex_state = 2}, + [546] = {.lex_state = 39, .external_lex_state = 2}, + [547] = {.lex_state = 39, .external_lex_state = 2}, + [548] = {.lex_state = 39, .external_lex_state = 2}, + [549] = {.lex_state = 39, .external_lex_state = 2}, + [550] = {.lex_state = 39, .external_lex_state = 2}, + [551] = {.lex_state = 39, .external_lex_state = 2}, + [552] = {.lex_state = 39, .external_lex_state = 2}, + [553] = {.lex_state = 39, .external_lex_state = 2}, + [554] = {.lex_state = 39, .external_lex_state = 2}, + [555] = {.lex_state = 39, .external_lex_state = 2}, + [556] = {.lex_state = 39, .external_lex_state = 2}, + [557] = {.lex_state = 39, .external_lex_state = 2}, + [558] = {.lex_state = 39, .external_lex_state = 2}, + [559] = {.lex_state = 39, .external_lex_state = 2}, + [560] = {.lex_state = 39, .external_lex_state = 2}, + [561] = {.lex_state = 39, .external_lex_state = 2}, + [562] = {.lex_state = 39, .external_lex_state = 2}, + [563] = {.lex_state = 39, .external_lex_state = 2}, + [564] = {.lex_state = 39, .external_lex_state = 2}, + [565] = {.lex_state = 39, .external_lex_state = 2}, + [566] = {.lex_state = 39, .external_lex_state = 2}, + [567] = {.lex_state = 39, .external_lex_state = 2}, + [568] = {.lex_state = 40, .external_lex_state = 2}, + [569] = {.lex_state = 0, .external_lex_state = 2}, + [570] = {.lex_state = 0, .external_lex_state = 2}, + [571] = {.lex_state = 0, .external_lex_state = 2}, + [572] = {.lex_state = 40, .external_lex_state = 2}, + [573] = {.lex_state = 40, .external_lex_state = 2}, + [574] = {.lex_state = 40, .external_lex_state = 2}, + [575] = {.lex_state = 40, .external_lex_state = 2}, + [576] = {.lex_state = 0, .external_lex_state = 2}, + [577] = {.lex_state = 0, .external_lex_state = 2}, + [578] = {.lex_state = 0, .external_lex_state = 2}, + [579] = {.lex_state = 0, .external_lex_state = 2}, + [580] = {.lex_state = 0, .external_lex_state = 2}, + [581] = {.lex_state = 0, .external_lex_state = 2}, + [582] = {.lex_state = 0, .external_lex_state = 2}, + [583] = {.lex_state = 0, .external_lex_state = 2}, + [584] = {.lex_state = 0, .external_lex_state = 2}, + [585] = {.lex_state = 40, .external_lex_state = 2}, + [586] = {.lex_state = 40, .external_lex_state = 2}, + [587] = {.lex_state = 40, .external_lex_state = 2}, + [588] = {.lex_state = 40, .external_lex_state = 2}, + [589] = {.lex_state = 0, .external_lex_state = 2}, + [590] = {.lex_state = 16, .external_lex_state = 2}, + [591] = {.lex_state = 0, .external_lex_state = 2}, + [592] = {.lex_state = 0, .external_lex_state = 2}, + [593] = {.lex_state = 16, .external_lex_state = 2}, + [594] = {.lex_state = 16, .external_lex_state = 2}, + [595] = {.lex_state = 0, .external_lex_state = 2}, + [596] = {.lex_state = 0, .external_lex_state = 2}, + [597] = {.lex_state = 40, .external_lex_state = 2}, + [598] = {.lex_state = 0, .external_lex_state = 2}, + [599] = {.lex_state = 0, .external_lex_state = 2}, + [600] = {.lex_state = 40, .external_lex_state = 2}, + [601] = {.lex_state = 40, .external_lex_state = 2}, + [602] = {.lex_state = 16, .external_lex_state = 2}, + [603] = {.lex_state = 40, .external_lex_state = 2}, + [604] = {.lex_state = 0, .external_lex_state = 2}, + [605] = {.lex_state = 0, .external_lex_state = 2}, + [606] = {.lex_state = 0, .external_lex_state = 2}, + [607] = {.lex_state = 16, .external_lex_state = 2}, + [608] = {.lex_state = 40, .external_lex_state = 2}, + [609] = {.lex_state = 16, .external_lex_state = 2}, + [610] = {.lex_state = 16, .external_lex_state = 2}, + [611] = {.lex_state = 16, .external_lex_state = 2}, + [612] = {.lex_state = 0, .external_lex_state = 2}, + [613] = {.lex_state = 0, .external_lex_state = 2}, + [614] = {.lex_state = 0, .external_lex_state = 2}, + [615] = {.lex_state = 0, .external_lex_state = 2}, + [616] = {.lex_state = 40, .external_lex_state = 2}, + [617] = {.lex_state = 40, .external_lex_state = 2}, + [618] = {.lex_state = 40, .external_lex_state = 2}, + [619] = {.lex_state = 40, .external_lex_state = 2}, + [620] = {.lex_state = 0, .external_lex_state = 2}, + [621] = {.lex_state = 0, .external_lex_state = 2}, + [622] = {.lex_state = 0, .external_lex_state = 2}, + [623] = {.lex_state = 0, .external_lex_state = 2}, + [624] = {.lex_state = 0, .external_lex_state = 2}, + [625] = {.lex_state = 16, .external_lex_state = 2}, + [626] = {.lex_state = 16, .external_lex_state = 2}, + [627] = {.lex_state = 16, .external_lex_state = 2}, + [628] = {.lex_state = 16, .external_lex_state = 2}, + [629] = {.lex_state = 16, .external_lex_state = 2}, + [630] = {.lex_state = 0, .external_lex_state = 2}, + [631] = {.lex_state = 0, .external_lex_state = 2}, + [632] = {.lex_state = 40, .external_lex_state = 2}, + [633] = {.lex_state = 40, .external_lex_state = 2}, + [634] = {.lex_state = 40, .external_lex_state = 2}, + [635] = {.lex_state = 40, .external_lex_state = 2}, + [636] = {.lex_state = 16, .external_lex_state = 2}, + [637] = {.lex_state = 16, .external_lex_state = 2}, + [638] = {.lex_state = 40, .external_lex_state = 2}, + [639] = {.lex_state = 0, .external_lex_state = 2}, + [640] = {.lex_state = 40, .external_lex_state = 2}, + [641] = {.lex_state = 16, .external_lex_state = 2}, + [642] = {.lex_state = 16, .external_lex_state = 2}, + [643] = {.lex_state = 16, .external_lex_state = 2}, + [644] = {.lex_state = 40, .external_lex_state = 2}, + [645] = {.lex_state = 0, .external_lex_state = 2}, + [646] = {.lex_state = 0, .external_lex_state = 2}, + [647] = {.lex_state = 40, .external_lex_state = 2}, + [648] = {.lex_state = 16, .external_lex_state = 2}, + [649] = {.lex_state = 16, .external_lex_state = 2}, + [650] = {.lex_state = 40, .external_lex_state = 2}, + [651] = {.lex_state = 0, .external_lex_state = 2}, + [652] = {.lex_state = 40, .external_lex_state = 2}, + [653] = {.lex_state = 0, .external_lex_state = 2}, + [654] = {.lex_state = 0, .external_lex_state = 2}, + [655] = {.lex_state = 0, .external_lex_state = 2}, + [656] = {.lex_state = 0, .external_lex_state = 2}, + [657] = {.lex_state = 0, .external_lex_state = 2}, + [658] = {.lex_state = 0, .external_lex_state = 2}, + [659] = {.lex_state = 40, .external_lex_state = 2}, + [660] = {.lex_state = 0, .external_lex_state = 2}, + [661] = {.lex_state = 0, .external_lex_state = 2}, }; enum { @@ -1906,14 +2210,13 @@ 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), - [aux_sym_variable_token1] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_DOLLARENV] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_DOLLARCACHE] = ACTIONS(1), + [aux_sym__untrimmed_argument_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_unquoted_argument_token1] = ACTIONS(1), + [aux_sym_if_command_token1] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [sym_bracket_argument] = ACTIONS(1), @@ -1921,68 +2224,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(356), - [sym_if_command] = STATE(8), - [sym_if_condition] = STATE(132), - [sym_foreach_command] = STATE(89), - [sym_foreach_loop] = STATE(132), - [sym_while_command] = STATE(103), - [sym_while_loop] = STATE(132), - [sym_function_command] = STATE(108), - [sym_function_def] = STATE(132), - [sym_macro_command] = STATE(121), - [sym_macro_def] = STATE(132), - [sym_normal_command] = STATE(132), - [sym__command_invocation] = STATE(132), - [aux_sym_source_file_repeat1] = STATE(132), + [sym_source_file] = STATE(656), + [sym_if_command] = STATE(9), + [sym_if_condition] = STATE(164), + [sym_foreach_command] = STATE(152), + [sym_foreach_loop] = STATE(164), + [sym_while_command] = STATE(123), + [sym_while_loop] = STATE(164), + [sym_function_command] = STATE(145), + [sym_function_def] = STATE(164), + [sym_macro_command] = STATE(147), + [sym_macro_def] = STATE(164), + [sym_normal_command] = STATE(164), + [sym__command_invocation] = STATE(164), + [sym__untrimmed_command_invocation] = STATE(164), + [aux_sym_source_file_repeat1] = STATE(164), [ts_builtin_sym_end] = ACTIONS(5), - [sym_if] = ACTIONS(7), - [sym_foreach] = ACTIONS(9), - [sym_while] = ACTIONS(11), - [sym_function] = ACTIONS(13), - [sym_macro] = ACTIONS(15), - [sym_identifier] = ACTIONS(17), + [aux_sym__untrimmed_argument_token1] = ACTIONS(7), + [sym_if] = ACTIONS(9), + [sym_foreach] = ACTIONS(11), + [sym_while] = ACTIONS(13), + [sym_function] = ACTIONS(15), + [sym_macro] = ACTIONS(17), + [sym_identifier] = ACTIONS(19), [sym_bracket_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 17, - ACTIONS(7), 1, - sym_if, + [0] = 18, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(19), 1, - sym_elseif, ACTIONS(21), 1, - sym_else, + aux_sym__untrimmed_argument_token1, ACTIONS(23), 1, - sym_endif, + sym_elseif, ACTIONS(25), 1, + sym_else, + ACTIONS(27), 1, + sym_endif, + ACTIONS(29), 1, sym_identifier, - STATE(9), 1, + STATE(3), 1, sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, + STATE(126), 1, sym_while_command, - STATE(106), 1, + STATE(127), 1, sym_function_command, - STATE(107), 1, + STATE(129), 1, sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(417), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [66] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(31), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(33), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(242), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(4), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [132] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(21), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(33), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(251), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [198] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(35), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(37), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(364), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(6), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [264] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(21), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(37), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(429), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [330] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(39), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(41), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(383), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(8), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [396] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(21), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(41), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(377), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [462] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(27), 1, + sym_endif, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(43), 1, + aux_sym__untrimmed_argument_token1, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(440), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(2), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [528] = 18, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(45), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(47), 1, + sym_endif, + STATE(3), 1, + sym_if_command, + STATE(126), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(129), 1, + sym_macro_command, + STATE(144), 1, + sym_foreach_command, STATE(304), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(14), 10, + STATE(11), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -1992,267 +2683,45 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_if_condition_repeat1, - [62] = 17, - ACTIONS(7), 1, - sym_if, + [594] = 18, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(27), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(219), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(6), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [124] = 17, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(29), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(275), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(14), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [186] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, sym_foreach, - ACTIONS(11), 1, - sym_while, ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(29), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(286), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(4), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [248] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, sym_while, - ACTIONS(13), 1, - sym_function, ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(27), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(225), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(14), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [310] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, sym_function, - ACTIONS(15), 1, + ACTIONS(17), 1, sym_macro, - ACTIONS(19), 1, - sym_elseif, ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(31), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(267), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(14), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [372] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, + aux_sym__untrimmed_argument_token1, ACTIONS(23), 1, - sym_endif, + sym_elseif, ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, sym_identifier, - STATE(9), 1, + ACTIONS(47), 1, + sym_endif, + STATE(3), 1, sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, + STATE(126), 1, sym_while_command, - STATE(106), 1, + STATE(127), 1, sym_function_command, - STATE(107), 1, + STATE(129), 1, sym_macro_command, - STATE(268), 1, + STATE(144), 1, + sym_foreach_command, + STATE(310), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(2), 10, + STATE(14), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2262,42 +2731,45 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_if_condition_repeat1, - [434] = 17, - ACTIONS(7), 1, - sym_if, + [660] = 18, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(19), 1, - sym_elseif, ACTIONS(21), 1, - sym_else, + aux_sym__untrimmed_argument_token1, + ACTIONS(23), 1, + sym_elseif, ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, sym_identifier, - ACTIONS(33), 1, + ACTIONS(49), 1, sym_endif, - STATE(9), 1, + STATE(3), 1, sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, + STATE(126), 1, sym_while_command, - STATE(106), 1, + STATE(127), 1, sym_function_command, - STATE(107), 1, + STATE(129), 1, sym_macro_command, - STATE(182), 1, + STATE(144), 1, + sym_foreach_command, + STATE(340), 1, sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(11), 10, + STATE(14), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2307,220 +2779,45 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_if_condition_repeat1, - [496] = 17, - ACTIONS(7), 1, - sym_if, + [726] = 18, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(35), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(246), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(14), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [558] = 17, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(33), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(188), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(14), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [620] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, sym_foreach, - ACTIONS(11), 1, - sym_while, ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(19), 1, - sym_elseif, - ACTIONS(21), 1, - sym_else, - ACTIONS(25), 1, - sym_identifier, - ACTIONS(31), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(274), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(7), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [682] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, sym_while, - ACTIONS(13), 1, - sym_function, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(19), 1, + ACTIONS(23), 1, sym_elseif, - ACTIONS(21), 1, - sym_else, ACTIONS(25), 1, - sym_identifier, - ACTIONS(35), 1, - sym_endif, - STATE(9), 1, - sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, - sym_while_command, - STATE(106), 1, - sym_function_command, - STATE(107), 1, - sym_macro_command, - STATE(240), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(10), 10, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [744] = 16, - ACTIONS(37), 1, - sym_if, - ACTIONS(40), 1, - sym_elseif, - ACTIONS(43), 1, sym_else, - ACTIONS(46), 1, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(49), 1, sym_endif, - ACTIONS(48), 1, - sym_foreach, ACTIONS(51), 1, - sym_while, - ACTIONS(54), 1, - sym_function, - ACTIONS(57), 1, - sym_macro, - ACTIONS(60), 1, - sym_identifier, - STATE(9), 1, + aux_sym__untrimmed_argument_token1, + STATE(3), 1, sym_if_command, - STATE(104), 1, - sym_foreach_command, - STATE(105), 1, + STATE(126), 1, sym_while_command, - STATE(106), 1, + STATE(127), 1, sym_function_command, - STATE(107), 1, + STATE(129), 1, sym_macro_command, + STATE(144), 1, + sym_foreach_command, + STATE(334), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(14), 10, + STATE(12), 11, sym_elseif_command, sym_else_command, sym_if_condition, @@ -2530,2857 +2827,4258 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_if_condition_repeat1, - [803] = 14, + [792] = 17, + ACTIONS(53), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(56), 1, + sym_if, + ACTIONS(59), 1, + sym_elseif, + ACTIONS(62), 1, + sym_else, ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, + sym_endif, ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, + sym_foreach, + ACTIONS(70), 1, + sym_while, ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(75), 1, - anon_sym_RPAREN, - ACTIONS(77), 1, - sym_bracket_argument, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [857] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, + sym_function, + ACTIONS(76), 1, + sym_macro, ACTIONS(79), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(28), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [911] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(81), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(18), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [965] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(83), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1019] = 14, - ACTIONS(88), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(94), 1, - anon_sym_DOLLARCACHE, - ACTIONS(97), 1, - anon_sym_DQUOTE, - ACTIONS(100), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(103), 1, - anon_sym_RPAREN, - ACTIONS(105), 1, - sym_bracket_argument, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(85), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1073] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(108), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(48), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1127] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(110), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(16), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1181] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(112), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(52), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1235] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(114), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(54), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1289] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(116), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(56), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1343] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(118), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(58), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1397] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(120), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(28), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1451] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(122), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1505] = 14, - ACTIONS(127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(130), 1, - anon_sym_DOLLARENV, - ACTIONS(133), 1, - anon_sym_DOLLARCACHE, - ACTIONS(136), 1, - anon_sym_DQUOTE, - ACTIONS(139), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(142), 1, - anon_sym_RPAREN, - ACTIONS(144), 1, - sym_bracket_argument, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(28), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(124), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1559] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(147), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(31), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1613] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(149), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(33), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1667] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(151), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1721] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(153), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(15), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1775] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(155), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1829] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(157), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(35), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1883] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(159), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1937] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(161), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(38), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [1991] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(163), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(43), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2045] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(165), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2099] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(167), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2153] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(169), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2207] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(171), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(39), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2261] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(173), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(40), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2315] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(175), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2369] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(177), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(55), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2423] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(179), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2477] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(181), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(51), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2531] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(183), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(63), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2585] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(185), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(28), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2639] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(187), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2693] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(189), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(27), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2747] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(191), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2801] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(193), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(28), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2855] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(195), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2909] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(197), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [2963] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(199), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3017] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(201), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3071] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(203), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3125] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(205), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3179] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(207), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(26), 2, - sym_argument, - aux_sym_if_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3233] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(209), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(53), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3287] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(211), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(45), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3341] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(213), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(57), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3395] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(215), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(19), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3449] = 14, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(77), 1, - sym_bracket_argument, - ACTIONS(217), 1, - anon_sym_RPAREN, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(49), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(153), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(138), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3503] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(231), 1, - anon_sym_RPAREN, - ACTIONS(233), 1, - sym_bracket_argument, - STATE(170), 1, - sym__escape_encoded, - STATE(329), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3556] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(235), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(330), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3609] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(237), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(322), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3662] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(239), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(361), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3715] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(241), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(328), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3768] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(243), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(327), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3821] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(245), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(360), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3874] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(247), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(338), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3927] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(249), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(339), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3980] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(251), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(364), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4033] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(253), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(333), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4086] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(255), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(334), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4139] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(257), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(335), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4192] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(259), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(352), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4245] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(261), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(350), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4298] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(263), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(324), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4351] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(265), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(325), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4404] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(267), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(362), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4457] = 14, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(227), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(233), 1, - sym_bracket_argument, - ACTIONS(269), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__escape_encoded, - STATE(371), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(348), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(143), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4510] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(271), 1, - sym_endforeach, - ACTIONS(273), 1, - sym_identifier, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(241), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(124), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4564] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(275), 1, - sym_endmacro, - ACTIONS(277), 1, - sym_identifier, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(265), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(109), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4618] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(279), 1, - sym_endfunction, - ACTIONS(281), 1, sym_identifier, STATE(3), 1, sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, + STATE(126), 1, sym_while_command, - STATE(96), 1, + STATE(127), 1, sym_function_command, - STATE(97), 1, + STATE(129), 1, sym_macro_command, - STATE(206), 1, + STATE(144), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_if_condition_repeat1, + [855] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(96), 1, + anon_sym_RPAREN, + ACTIONS(98), 1, + sym_bracket_argument, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [913] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(100), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(102), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(104), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [971] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(104), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(106), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(18), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1029] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(108), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1087] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(110), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(112), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(57), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(108), 1, + anon_sym_RPAREN, + ACTIONS(114), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(26), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1203] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(116), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(118), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(61), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(120), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(122), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(28), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(124), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(126), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(64), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(128), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(130), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(31), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(132), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(134), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(67), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(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(136), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + 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(138), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(140), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(70), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1609] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(142), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1667] = 15, + ACTIONS(84), 1, + 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(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(73), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1725] = 15, + ACTIONS(84), 1, + 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(142), 1, + anon_sym_RPAREN, + ACTIONS(148), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(33), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1783] = 15, + ACTIONS(84), 1, + 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(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [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(150), 1, + anon_sym_RPAREN, + ACTIONS(152), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(34), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1899] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(154), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1957] = 15, + ACTIONS(84), 1, + 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(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2015] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(158), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(160), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(36), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2073] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(162), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2131] = 15, + ACTIONS(84), 1, + 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, + anon_sym_RPAREN, + ACTIONS(164), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(43), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2189] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(166), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(168), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(46), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2247] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(170), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2305] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(172), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(174), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(48), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2363] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(176), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2421] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(178), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(180), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(39), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2479] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(182), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2537] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(180), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2595] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(184), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(186), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(41), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2653] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(188), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2711] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(188), 1, + anon_sym_RPAREN, + ACTIONS(190), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(51), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2769] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(192), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2827] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(192), 1, + anon_sym_RPAREN, + ACTIONS(194), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(15), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2885] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(186), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2943] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(196), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3001] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(198), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3059] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(200), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3117] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(202), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(204), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(44), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3175] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(206), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3233] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(208), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(210), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(62), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3291] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(212), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3349] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(212), 1, + anon_sym_RPAREN, + ACTIONS(214), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(102), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3407] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(216), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(218), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(50), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3465] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(220), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3523] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(102), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3581] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(222), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3639] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(224), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(226), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(52), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3697] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(228), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3755] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(228), 1, + anon_sym_RPAREN, + ACTIONS(230), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(106), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3813] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(226), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3871] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(232), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3929] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(232), 1, + anon_sym_RPAREN, + ACTIONS(234), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(108), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3987] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(222), 1, + anon_sym_RPAREN, + ACTIONS(236), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(77), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4045] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(238), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4103] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(238), 1, + anon_sym_RPAREN, + ACTIONS(240), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(110), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4161] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(242), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(244), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(79), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4219] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(246), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4277] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(246), 1, + anon_sym_RPAREN, + ACTIONS(248), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(111), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4335] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(250), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(252), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(109), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4393] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(254), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(256), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(83), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4451] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(258), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4509] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(260), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(262), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(66), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4567] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(264), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4625] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(264), 1, + anon_sym_RPAREN, + ACTIONS(266), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(98), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4683] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(268), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(270), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(53), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4741] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(270), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4799] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(272), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4857] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(274), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4915] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(276), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4973] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(278), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(280), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(96), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5031] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(282), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(284), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(84), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5089] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(284), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5147] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(286), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(288), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(82), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5205] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(290), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(292), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(85), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5263] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(292), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5321] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(294), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(296), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(55), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5379] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(298), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5437] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(300), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(302), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(88), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5495] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(304), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(306), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(91), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5553] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(296), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5611] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(272), 1, + anon_sym_RPAREN, + ACTIONS(308), 1, + aux_sym__untrimmed_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(99), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5669] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(310), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5727] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(312), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5785] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(314), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(316), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(93), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5843] = 15, + ACTIONS(321), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(324), 1, + anon_sym_DOLLARENV, + ACTIONS(327), 1, + anon_sym_DOLLARCACHE, + ACTIONS(330), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(333), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(339), 1, + anon_sym_RPAREN, + ACTIONS(341), 1, + sym_bracket_argument, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(318), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5901] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(344), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5959] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(316), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6017] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(346), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6075] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(348), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(350), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(103), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6133] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(352), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6191] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(354), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(356), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(60), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6249] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(358), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6307] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(356), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6365] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(360), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6423] = 15, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(90), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(92), 1, + anon_sym_DQUOTE, + ACTIONS(94), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(98), 1, + sym_bracket_argument, + ACTIONS(362), 1, + anon_sym_RPAREN, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(215), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(101), 3, + sym_argument, + sym__untrimmed_argument, + aux_sym_if_command_repeat2, + STATE(205), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6481] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(364), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(366), 1, + sym_endfunction, + ACTIONS(368), 1, + sym_identifier, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(307), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(137), 8, + STATE(115), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5388,38 +7086,83 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [4672] = 15, - ACTIONS(7), 1, - sym_if, + [6539] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(283), 1, - sym_endwhile, - ACTIONS(285), 1, + ACTIONS(370), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(372), 1, + sym_endforeach, + ACTIONS(374), 1, sym_identifier, STATE(5), 1, sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, + STATE(113), 1, sym_foreach_command, - STATE(205), 1, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(453), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(119), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6597] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(378), 1, + sym_endwhile, + ACTIONS(380), 1, + sym_identifier, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(312), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(134), 8, + STATE(161), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5427,38 +7170,335 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [4726] = 15, - ACTIONS(7), 1, - sym_if, + [6655] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(273), 1, + ACTIONS(366), 1, + sym_endfunction, + ACTIONS(368), 1, sym_identifier, - ACTIONS(287), 1, - sym_endforeach, - STATE(12), 1, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, + STATE(112), 1, sym_function_command, - STATE(117), 1, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, sym_while_command, - STATE(118), 1, + STATE(122), 1, sym_foreach_command, + STATE(313), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6713] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(384), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(386), 1, + sym_endmacro, + ACTIONS(388), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(308), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(118), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6771] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(390), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(426), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6829] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(386), 1, + sym_endmacro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(314), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(175), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6887] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(372), 1, + sym_endforeach, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(428), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(162), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6945] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(396), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(421), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(175), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7003] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(378), 1, + sym_endwhile, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(398), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(306), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(114), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7061] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(400), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(402), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, STATE(305), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(133), 8, + STATE(158), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5466,194 +7506,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [4780] = 15, - ACTIONS(7), 1, - sym_if, + [7119] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(273), 1, + ACTIONS(380), 1, sym_identifier, - ACTIONS(289), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(269), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(123), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4834] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(273), 1, - sym_identifier, - ACTIONS(291), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(220), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(98), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4888] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(293), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(277), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(115), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4942] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(279), 1, - sym_endfunction, - ACTIONS(281), 1, - sym_identifier, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(278), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(86), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4996] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(283), 1, + ACTIONS(404), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(406), 1, sym_endwhile, - ACTIONS(285), 1, - sym_identifier, - STATE(5), 1, + STATE(7), 1, sym_if_command, - STATE(91), 1, + STATE(155), 1, sym_macro_command, - STATE(92), 1, + STATE(156), 1, sym_function_command, - STATE(93), 1, + STATE(157), 1, sym_while_command, - STATE(94), 1, + STATE(159), 1, sym_foreach_command, - STATE(279), 1, + STATE(399), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(87), 8, + STATE(128), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5661,38 +7548,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5050] = 15, - ACTIONS(7), 1, - sym_if, + [7177] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(273), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(408), 1, sym_endforeach, - STATE(12), 1, + STATE(5), 1, sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, + STATE(113), 1, sym_foreach_command, - STATE(280), 1, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(419), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(88), 8, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5700,116 +7590,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5104] = 15, - ACTIONS(7), 1, - sym_if, + [7235] = 16, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(295), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(221), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(99), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5158] = 15, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(297), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(222), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(100), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5212] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, sym_foreach, - ACTIONS(11), 1, - sym_while, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(277), 1, + ACTIONS(388), 1, sym_identifier, - ACTIONS(299), 1, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(410), 1, sym_endmacro, STATE(13), 1, sym_if_command, - STATE(84), 1, + STATE(131), 1, sym_foreach_command, - STATE(114), 1, + STATE(132), 1, sym_while_command, - STATE(119), 1, + STATE(135), 1, sym_function_command, - STATE(122), 1, + STATE(136), 1, sym_macro_command, - STATE(223), 1, + STATE(344), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(101), 8, + STATE(175), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5817,38 +7632,251 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5266] = 15, - ACTIONS(7), 1, - sym_if, + [7293] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(273), 1, + ACTIONS(380), 1, sym_identifier, - ACTIONS(291), 1, - sym_endforeach, - STATE(12), 1, + ACTIONS(412), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(414), 1, + sym_endwhile, + STATE(7), 1, sym_if_command, - STATE(85), 1, + STATE(155), 1, sym_macro_command, - STATE(116), 1, + STATE(156), 1, sym_function_command, - STATE(117), 1, + STATE(157), 1, sym_while_command, - STATE(118), 1, + STATE(159), 1, sym_foreach_command, - STATE(226), 1, + STATE(244), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(138), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7351] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(416), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(418), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(245), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(139), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7409] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(406), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(420), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7467] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(420), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(422), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(291), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(150), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7525] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(424), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(422), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7583] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(426), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(428), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(335), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(133), 8, + STATE(140), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5856,38 +7884,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5320] = 15, - ACTIONS(7), 1, - sym_if, + [7641] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(285), 1, + ACTIONS(380), 1, sym_identifier, - ACTIONS(295), 1, + ACTIONS(430), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(432), 1, sym_endwhile, - STATE(5), 1, + STATE(7), 1, sym_if_command, - STATE(91), 1, + STATE(155), 1, sym_macro_command, - STATE(92), 1, + STATE(156), 1, sym_function_command, - STATE(93), 1, + STATE(157), 1, sym_while_command, - STATE(94), 1, + STATE(159), 1, sym_foreach_command, - STATE(203), 1, + STATE(336), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(134), 8, + STATE(141), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5895,77 +7926,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5374] = 15, - ACTIONS(7), 1, - sym_if, + [7699] = 16, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(297), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(227), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5428] = 15, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(277), 1, + ACTIONS(388), 1, sym_identifier, - ACTIONS(299), 1, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(434), 1, sym_endmacro, STATE(13), 1, sym_if_command, - STATE(84), 1, + STATE(131), 1, sym_foreach_command, - STATE(114), 1, + STATE(132), 1, sym_while_command, - STATE(119), 1, + STATE(135), 1, sym_function_command, - STATE(122), 1, + STATE(136), 1, sym_macro_command, - STATE(228), 1, + STATE(293), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(136), 8, + STATE(175), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -5973,116 +7968,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5482] = 15, - ACTIONS(7), 1, - sym_if, + [7757] = 16, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(301), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(317), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(136), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5536] = 15, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(303), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(271), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(120), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5590] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, sym_foreach, - ACTIONS(11), 1, - sym_while, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(273), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(305), 1, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(436), 1, sym_endforeach, - STATE(12), 1, + STATE(5), 1, sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, + STATE(113), 1, sym_foreach_command, - STATE(183), 1, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(253), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(125), 8, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -6090,77 +8010,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5644] = 15, - ACTIONS(7), 1, - sym_if, + [7815] = 16, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(307), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(184), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(126), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5698] = 15, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(281), 1, + ACTIONS(368), 1, sym_identifier, - ACTIONS(309), 1, + ACTIONS(438), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(440), 1, sym_endfunction, - STATE(3), 1, + STATE(10), 1, sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, + STATE(112), 1, sym_function_command, - STATE(97), 1, + STATE(116), 1, sym_macro_command, - STATE(186), 1, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(337), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(130), 8, + STATE(142), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -6168,116 +8052,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5752] = 15, - ACTIONS(7), 1, - sym_if, + [7873] = 16, ACTIONS(9), 1, - sym_foreach, + sym_if, ACTIONS(11), 1, - sym_while, + sym_foreach, ACTIONS(13), 1, - sym_function, + sym_while, ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, sym_macro, - ACTIONS(277), 1, + ACTIONS(388), 1, sym_identifier, - ACTIONS(311), 1, + ACTIONS(410), 1, sym_endmacro, + ACTIONS(442), 1, + aux_sym__untrimmed_argument_token1, STATE(13), 1, sym_if_command, - STATE(84), 1, + STATE(131), 1, sym_foreach_command, - STATE(114), 1, + STATE(132), 1, sym_while_command, - STATE(119), 1, + STATE(135), 1, sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(200), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(131), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5806] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(313), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(272), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(113), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5860] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(275), 1, - sym_endmacro, - ACTIONS(277), 1, - sym_identifier, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, + STATE(136), 1, sym_macro_command, STATE(292), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(136), 8, + STATE(125), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -6285,931 +8094,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [5914] = 15, - ACTIONS(7), 1, - sym_if, + [7931] = 16, ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(315), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(291), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5968] = 15, - ACTIONS(7), 1, sym_if, - ACTIONS(9), 1, - sym_foreach, ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(317), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(290), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(134), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6022] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, sym_foreach, - ACTIONS(11), 1, - sym_while, ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(273), 1, - sym_identifier, - ACTIONS(319), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(289), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(133), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6076] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, sym_while, - ACTIONS(13), 1, - sym_function, ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(313), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(316), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6130] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(321), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(242), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(127), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6184] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(293), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(207), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(136), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6238] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(315), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(264), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(110), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6292] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(317), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(263), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(111), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6346] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(273), 1, - sym_identifier, - ACTIONS(319), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(262), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(112), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6400] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(323), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(243), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(128), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6454] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(303), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(315), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(134), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6508] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(301), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(273), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(102), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6562] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(325), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(244), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(129), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6616] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(273), 1, - sym_identifier, - ACTIONS(289), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(306), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(133), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6670] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(271), 1, - sym_endforeach, - ACTIONS(273), 1, - sym_identifier, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(247), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(133), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6724] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(273), 1, - sym_identifier, - ACTIONS(305), 1, - sym_endforeach, - STATE(12), 1, - sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, - sym_foreach_command, - STATE(187), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(133), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6778] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(307), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(201), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(134), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6832] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(321), 1, - sym_endwhile, - STATE(5), 1, - sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, - sym_foreach_command, - STATE(248), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(134), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6886] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(323), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(249), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6940] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(325), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(250), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(136), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6994] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(309), 1, - sym_endfunction, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - STATE(198), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7048] = 15, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(311), 1, - sym_endmacro, - STATE(13), 1, - sym_if_command, - STATE(84), 1, - sym_foreach_command, - STATE(114), 1, - sym_while_command, - STATE(119), 1, - sym_function_command, - STATE(122), 1, - sym_macro_command, - STATE(197), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(136), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7102] = 14, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, ACTIONS(17), 1, - sym_identifier, - ACTIONS(327), 1, - ts_builtin_sym_end, - STATE(8), 1, - sym_if_command, - STATE(89), 1, - sym_foreach_command, - STATE(103), 1, - sym_while_command, - STATE(108), 1, - sym_function_command, - STATE(121), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(135), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7153] = 14, - ACTIONS(329), 1, - sym_if, - ACTIONS(332), 1, - sym_foreach, - ACTIONS(335), 1, - sym_endforeach, - ACTIONS(337), 1, - sym_while, - ACTIONS(340), 1, - sym_function, - ACTIONS(343), 1, sym_macro, - ACTIONS(346), 1, + ACTIONS(388), 1, sym_identifier, - STATE(12), 1, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(444), 1, + sym_endmacro, + STATE(13), 1, sym_if_command, - STATE(85), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(118), 1, + STATE(131), 1, sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(423), 1, + sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(133), 8, + STATE(175), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7217,36 +8136,1042 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7204] = 14, - ACTIONS(329), 1, + [7989] = 16, + ACTIONS(9), 1, sym_if, - ACTIONS(332), 1, + ACTIONS(11), 1, sym_foreach, - ACTIONS(335), 1, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(414), 1, sym_endwhile, - ACTIONS(337), 1, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(254), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8047] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, sym_while, - ACTIONS(340), 1, + ACTIONS(15), 1, sym_function, - ACTIONS(343), 1, + ACTIONS(17), 1, sym_macro, - ACTIONS(349), 1, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(418), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(255), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8105] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(428), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(341), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(162), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8163] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(432), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(342), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8221] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(440), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(343), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8279] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(446), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(425), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8337] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(436), 1, + sym_endforeach, + ACTIONS(448), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(243), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8395] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(424), 1, + sym_endfunction, + ACTIONS(450), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(395), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(130), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8453] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(396), 1, + sym_endmacro, + ACTIONS(452), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(442), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(120), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8511] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(444), 1, + sym_endmacro, + ACTIONS(454), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(396), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8569] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(382), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(456), 1, + sym_endfunction, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(374), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8627] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(376), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(458), 1, + sym_endwhile, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(375), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8685] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(392), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(422), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(256), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(175), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8743] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(460), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(376), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(162), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8801] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(408), 1, + sym_endforeach, + ACTIONS(462), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(413), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(124), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8859] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(446), 1, + sym_endfunction, + ACTIONS(464), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(451), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(143), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8917] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(390), 1, + sym_endwhile, + ACTIONS(466), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(452), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(117), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8975] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(388), 1, + sym_identifier, + ACTIONS(434), 1, + sym_endmacro, + ACTIONS(468), 1, + aux_sym__untrimmed_argument_token1, + STATE(13), 1, + sym_if_command, + STATE(131), 1, + sym_foreach_command, + STATE(132), 1, + sym_while_command, + STATE(135), 1, + sym_function_command, + STATE(136), 1, + sym_macro_command, + STATE(379), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9033] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(456), 1, + sym_endfunction, + ACTIONS(470), 1, + aux_sym__untrimmed_argument_token1, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, + STATE(380), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(148), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9091] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(458), 1, + sym_endwhile, + ACTIONS(472), 1, + aux_sym__untrimmed_argument_token1, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + STATE(381), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(149), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9149] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(394), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(402), 1, + sym_endforeach, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(311), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(162), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9207] = 16, + ACTIONS(9), 1, + sym_if, + ACTIONS(11), 1, + sym_foreach, + ACTIONS(13), 1, + sym_while, + ACTIONS(15), 1, + sym_function, + ACTIONS(17), 1, + sym_macro, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(460), 1, + sym_endforeach, + ACTIONS(474), 1, + aux_sym__untrimmed_argument_token1, + STATE(5), 1, + sym_if_command, + STATE(113), 1, + sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, + STATE(382), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(151), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9265] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(488), 1, + anon_sym_RPAREN, + ACTIONS(490), 1, + sym_bracket_argument, + STATE(272), 1, + sym__escape_encoded, + STATE(598), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9318] = 15, + ACTIONS(492), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(495), 1, + sym_if, + ACTIONS(498), 1, + sym_foreach, + ACTIONS(501), 1, + sym_while, + ACTIONS(504), 1, + sym_endwhile, + ACTIONS(506), 1, + sym_function, + ACTIONS(509), 1, + sym_macro, + ACTIONS(512), 1, + sym_identifier, + STATE(7), 1, + sym_if_command, + STATE(155), 1, + sym_macro_command, + STATE(156), 1, + sym_function_command, + STATE(157), 1, + sym_while_command, + STATE(159), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(161), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9373] = 15, + ACTIONS(495), 1, + sym_if, + ACTIONS(498), 1, + sym_foreach, + ACTIONS(501), 1, + sym_while, + ACTIONS(504), 1, + sym_endforeach, + ACTIONS(506), 1, + sym_function, + ACTIONS(509), 1, + sym_macro, + ACTIONS(515), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(518), 1, sym_identifier, STATE(5), 1, sym_if_command, - STATE(91), 1, - sym_macro_command, - STATE(92), 1, - sym_function_command, - STATE(93), 1, - sym_while_command, - STATE(94), 1, + STATE(113), 1, sym_foreach_command, + STATE(146), 1, + sym_macro_command, + STATE(153), 1, + sym_function_command, + STATE(154), 1, + sym_while_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(134), 8, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7254,36 +9179,78 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7255] = 14, - ACTIONS(329), 1, + [9428] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(521), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(579), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9481] = 15, + ACTIONS(9), 1, sym_if, - ACTIONS(332), 1, + ACTIONS(11), 1, sym_foreach, - ACTIONS(337), 1, + ACTIONS(13), 1, sym_while, - ACTIONS(340), 1, + ACTIONS(15), 1, sym_function, - ACTIONS(343), 1, + ACTIONS(17), 1, sym_macro, - ACTIONS(352), 1, - ts_builtin_sym_end, - ACTIONS(354), 1, + ACTIONS(19), 1, sym_identifier, - STATE(8), 1, + ACTIONS(523), 1, + ts_builtin_sym_end, + ACTIONS(525), 1, + aux_sym__untrimmed_argument_token1, + STATE(9), 1, sym_if_command, - STATE(89), 1, - sym_foreach_command, - STATE(103), 1, + STATE(123), 1, sym_while_command, - STATE(108), 1, + STATE(145), 1, sym_function_command, - STATE(121), 1, + STATE(147), 1, sym_macro_command, + STATE(152), 1, + sym_foreach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(135), 8, + STATE(168), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7291,36 +9258,430 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7306] = 14, - ACTIONS(329), 1, + [9536] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(527), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(605), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9589] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(529), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(614), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9642] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(531), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(631), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9695] = 15, + ACTIONS(495), 1, sym_if, - ACTIONS(332), 1, + ACTIONS(498), 1, sym_foreach, - ACTIONS(335), 1, - sym_endmacro, - ACTIONS(337), 1, + ACTIONS(501), 1, sym_while, - ACTIONS(340), 1, + ACTIONS(506), 1, sym_function, - ACTIONS(343), 1, + ACTIONS(509), 1, sym_macro, - ACTIONS(357), 1, + ACTIONS(533), 1, + ts_builtin_sym_end, + ACTIONS(535), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(538), 1, + sym_identifier, + STATE(9), 1, + sym_if_command, + STATE(123), 1, + sym_while_command, + STATE(145), 1, + sym_function_command, + STATE(147), 1, + sym_macro_command, + STATE(152), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(168), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9750] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(541), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(624), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9803] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(543), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(661), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9856] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(545), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(591), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9909] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(547), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(596), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9962] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(549), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(595), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10015] = 14, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(484), 1, + anon_sym_DQUOTE, + ACTIONS(486), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(551), 1, + anon_sym_RPAREN, + STATE(272), 1, + sym__escape_encoded, + STATE(651), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10068] = 15, + ACTIONS(495), 1, + sym_if, + ACTIONS(498), 1, + sym_foreach, + ACTIONS(501), 1, + sym_while, + ACTIONS(504), 1, + sym_endmacro, + ACTIONS(506), 1, + sym_function, + ACTIONS(509), 1, + sym_macro, + ACTIONS(553), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(556), 1, sym_identifier, STATE(13), 1, sym_if_command, - STATE(84), 1, + STATE(131), 1, sym_foreach_command, - STATE(114), 1, + STATE(132), 1, sym_while_command, - STATE(119), 1, + STATE(135), 1, sym_function_command, - STATE(122), 1, + STATE(136), 1, sym_macro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(136), 8, + STATE(175), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -7328,2500 +9689,2696 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_normal_command, sym__command_invocation, + sym__untrimmed_command_invocation, aux_sym_source_file_repeat1, - [7357] = 14, - ACTIONS(329), 1, - sym_if, - ACTIONS(332), 1, - sym_foreach, - ACTIONS(335), 1, - sym_endfunction, - ACTIONS(337), 1, - sym_while, - ACTIONS(340), 1, - sym_function, - ACTIONS(343), 1, - sym_macro, - ACTIONS(360), 1, - sym_identifier, - STATE(3), 1, - sym_if_command, - STATE(90), 1, - sym_foreach_command, - STATE(95), 1, - sym_while_command, - STATE(96), 1, - sym_function_command, - STATE(97), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(137), 8, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7408] = 10, - ACTIONS(65), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(67), 1, - anon_sym_DOLLARENV, - ACTIONS(69), 1, - anon_sym_DOLLARCACHE, - ACTIONS(365), 1, - aux_sym_unquoted_argument_token1, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(363), 3, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - STATE(139), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(63), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7450] = 10, - ACTIONS(370), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLARENV, - ACTIONS(376), 1, - anon_sym_DOLLARCACHE, - ACTIONS(381), 1, - aux_sym_unquoted_argument_token1, - STATE(147), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(379), 3, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - STATE(139), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(152), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(367), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7492] = 11, - ACTIONS(386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(388), 1, - anon_sym_DOLLARENV, - ACTIONS(390), 1, - anon_sym_DOLLARCACHE, - ACTIONS(392), 1, - anon_sym_DQUOTE, - ACTIONS(394), 1, - aux_sym_quoted_element_token1, - STATE(160), 1, - sym__escape_encoded, - STATE(372), 1, - sym_quoted_element, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(145), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(164), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(384), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7535] = 11, - ACTIONS(386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(388), 1, - anon_sym_DOLLARENV, - ACTIONS(390), 1, - anon_sym_DOLLARCACHE, - ACTIONS(394), 1, - aux_sym_quoted_element_token1, - ACTIONS(396), 1, - anon_sym_DQUOTE, - STATE(160), 1, - sym__escape_encoded, - STATE(326), 1, - sym_quoted_element, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(145), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(164), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(384), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7578] = 10, - ACTIONS(379), 1, - anon_sym_RPAREN, - ACTIONS(401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(404), 1, - anon_sym_DOLLARENV, - ACTIONS(407), 1, - anon_sym_DOLLARCACHE, - ACTIONS(410), 1, - aux_sym_unquoted_argument_token1, - STATE(170), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(142), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(398), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7618] = 10, - ACTIONS(221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(223), 1, - anon_sym_DOLLARENV, - ACTIONS(225), 1, - anon_sym_DOLLARCACHE, - ACTIONS(363), 1, - anon_sym_RPAREN, - ACTIONS(413), 1, - aux_sym_unquoted_argument_token1, - STATE(170), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(142), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(161), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(219), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7658] = 10, - ACTIONS(418), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(421), 1, - anon_sym_DOLLARENV, - ACTIONS(424), 1, - anon_sym_DOLLARCACHE, - ACTIONS(427), 1, - anon_sym_DQUOTE, - ACTIONS(429), 1, - aux_sym_quoted_element_token1, - STATE(160), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(144), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(164), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(415), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7698] = 10, - ACTIONS(386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(388), 1, - anon_sym_DOLLARENV, - ACTIONS(390), 1, - anon_sym_DOLLARCACHE, - ACTIONS(432), 1, - anon_sym_DQUOTE, - ACTIONS(434), 1, - aux_sym_quoted_element_token1, - STATE(160), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(144), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(164), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(384), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7738] = 3, - ACTIONS(438), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(436), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7759] = 3, - ACTIONS(442), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(440), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7780] = 3, - ACTIONS(446), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(444), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7801] = 3, - ACTIONS(450), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(448), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7822] = 3, - ACTIONS(454), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(452), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7843] = 3, - ACTIONS(458), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(456), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7864] = 3, - ACTIONS(462), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(460), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7885] = 3, - ACTIONS(466), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(464), 11, - 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, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [7906] = 6, - ACTIONS(471), 1, - aux_sym_variable_token1, - ACTIONS(474), 1, - anon_sym_RBRACE, - STATE(270), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(154), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(468), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7931] = 3, - ACTIONS(446), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(444), 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, - [7950] = 6, + [10123] = 14, ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(332), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7975] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(341), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8000] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(323), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8025] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(346), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8050] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(442), 10, - 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, - aux_sym_quoted_element_token1, - [8067] = 3, - ACTIONS(462), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(460), 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, - [8086] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(373), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8111] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(363), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8136] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(462), 10, - 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, - aux_sym_quoted_element_token1, - [8153] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(438), 10, - 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, - aux_sym_quoted_element_token1, - [8170] = 6, ACTIONS(480), 1, - aux_sym_variable_token1, + anon_sym_DOLLARENV, ACTIONS(482), 1, - anon_sym_RBRACE, - STATE(270), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(154), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8195] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(342), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8220] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, - sym__escape_encoded, - STATE(343), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(166), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(476), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8245] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(446), 10, - 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(484), 1, anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [8262] = 3, - ACTIONS(442), 1, + ACTIONS(486), 1, aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(440), 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, + ACTIONS(490), 1, + sym_bracket_argument, + ACTIONS(559), 1, anon_sym_RPAREN, - [8281] = 6, - ACTIONS(478), 1, - aux_sym_variable_token1, - STATE(270), 1, + STATE(272), 1, sym__escape_encoded, - STATE(331), 1, - sym_variable, + STATE(623), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(166), 2, + STATE(570), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(211), 3, sym_escape_sequence, - aux_sym_variable_repeat1, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, ACTIONS(476), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8306] = 3, - ACTIONS(438), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(436), 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, - [8325] = 3, - ACTIONS(450), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(448), 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, - [8344] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(450), 10, - 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, - aux_sym_quoted_element_token1, - [8361] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(484), 9, + [10176] = 15, + ACTIONS(495), 1, sym_if, - sym_elseif, - sym_else, - sym_endif, + ACTIONS(498), 1, sym_foreach, + ACTIONS(501), 1, sym_while, - sym_function, - sym_macro, - sym_identifier, - [8377] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(486), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8393] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(488), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8409] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(490), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8425] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(492), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8441] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8457] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8473] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8489] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8505] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8521] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8537] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8553] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(508), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8569] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(510), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8585] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(512), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8601] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(514), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8617] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(516), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8633] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(518), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8649] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(520), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8665] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(522), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8681] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(524), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8697] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(526), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8713] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8729] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8745] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(532), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8761] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8777] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8793] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(538), 9, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8809] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, + ACTIONS(504), 1, sym_endfunction, - sym_macro, - sym_identifier, - [8823] = 3, - ACTIONS(540), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(520), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [8839] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8853] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8867] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8881] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(522), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8895] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(520), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8909] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(518), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8923] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(516), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8937] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(514), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8951] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(484), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8965] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(538), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8979] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(524), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [8993] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9007] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9021] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9035] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9049] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9063] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9077] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9091] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9105] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(526), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9119] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(510), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9133] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(508), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9147] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9161] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9175] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(522), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9189] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(520), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9203] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(518), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9217] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(516), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9231] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(514), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9245] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(484), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9259] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(538), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9273] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(524), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9287] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9301] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9315] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [9329] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9343] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9357] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9371] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9385] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9399] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(526), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9413] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(510), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9427] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(508), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9441] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9455] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9469] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9483] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(522), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9497] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(520), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9511] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(518), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9525] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(516), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9539] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(514), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9553] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(484), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9567] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(538), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9581] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(524), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9595] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9609] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9623] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [9637] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9651] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9665] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9679] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9693] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(526), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9707] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(510), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9721] = 3, - ACTIONS(542), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9737] = 3, - ACTIONS(544), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9753] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(440), 7, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_RBRACE, - [9767] = 3, - ACTIONS(546), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9783] = 3, - ACTIONS(548), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9799] = 3, - ACTIONS(550), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9815] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9829] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(510), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9843] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(526), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9857] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(534), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9871] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(506), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9885] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(502), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9899] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(500), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [9913] = 3, - ACTIONS(552), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9929] = 3, - ACTIONS(554), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9945] = 3, - ACTIONS(556), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9961] = 3, - ACTIONS(558), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(524), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9977] = 3, - ACTIONS(560), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(538), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [9993] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(498), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [10007] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(494), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10021] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(496), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10035] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(508), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10049] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10063] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10077] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10091] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(522), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10105] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(562), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10119] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(504), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, + ACTIONS(506), 1, sym_function, + ACTIONS(509), 1, sym_macro, - sym_identifier, - [10133] = 3, + ACTIONS(561), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(564), 1, - ts_builtin_sym_end, + sym_identifier, + STATE(10), 1, + sym_if_command, + STATE(112), 1, + sym_function_command, + STATE(116), 1, + sym_macro_command, + STATE(121), 1, + sym_while_command, + STATE(122), 1, + sym_foreach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(484), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10149] = 2, + STATE(177), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [10231] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(585), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(566), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [10163] = 2, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10281] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(632), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(568), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [10177] = 3, - ACTIONS(570), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10331] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(572), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(514), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10193] = 2, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10381] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(600), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(572), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_identifier, - [10207] = 3, - ACTIONS(574), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10431] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(650), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(516), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10223] = 3, - ACTIONS(576), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10481] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(573), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(526), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10239] = 3, - ACTIONS(578), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10531] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(619), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(518), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10255] = 3, - ACTIONS(580), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10581] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(574), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(510), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10271] = 2, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10631] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(616), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(508), 7, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_identifier, - [10285] = 3, - ACTIONS(582), 1, - ts_builtin_sym_end, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10681] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(635), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(508), 6, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10301] = 2, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10731] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(634), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(524), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10315] = 2, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10781] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(652), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(538), 7, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_identifier, - [10329] = 3, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10831] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(618), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10881] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(608), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10931] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(575), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10981] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(633), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11031] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(617), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11081] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(586), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11131] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(587), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11181] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(588), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11231] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(647), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11281] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(659), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11331] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(601), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11381] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(568), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11431] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(603), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11481] = 13, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(575), 1, + anon_sym_DQUOTE, + ACTIONS(577), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(579), 1, + sym_bracket_argument, + STATE(224), 1, + sym__escape_encoded, + STATE(597), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(638), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(213), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11531] = 10, ACTIONS(584), 1, - ts_builtin_sym_end, + anon_sym_DOLLAR_LBRACE, + ACTIONS(587), 1, + anon_sym_DOLLARENV, + ACTIONS(590), 1, + anon_sym_DOLLARCACHE, + ACTIONS(595), 1, + aux_sym_unquoted_argument_token1, + STATE(222), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(522), 6, + STATE(204), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(593), 4, + sym_bracket_argument, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + ACTIONS(581), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11574] = 10, + ACTIONS(84), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(86), 1, + anon_sym_DOLLARENV, + ACTIONS(88), 1, + anon_sym_DOLLARCACHE, + ACTIONS(600), 1, + aux_sym_unquoted_argument_token1, + STATE(222), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(204), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(217), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(598), 4, + sym_bracket_argument, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + ACTIONS(82), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11617] = 11, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLARENV, + ACTIONS(608), 1, + anon_sym_DOLLARCACHE, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_quoted_element_token1, + STATE(234), 1, + sym__escape_encoded, + STATE(604), 1, + sym_quoted_element, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(212), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(602), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11660] = 11, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLARENV, + ACTIONS(608), 1, + anon_sym_DOLLARCACHE, + ACTIONS(612), 1, + aux_sym_quoted_element_token1, + ACTIONS(614), 1, + anon_sym_DQUOTE, + STATE(234), 1, + sym__escape_encoded, + STATE(584), 1, + sym_quoted_element, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(212), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(602), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11703] = 11, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLARENV, + ACTIONS(608), 1, + anon_sym_DOLLARCACHE, + ACTIONS(612), 1, + aux_sym_quoted_element_token1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + STATE(234), 1, + sym__escape_encoded, + STATE(592), 1, + sym_quoted_element, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(212), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(602), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11746] = 10, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(621), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(624), 1, + anon_sym_DOLLARENV, + ACTIONS(627), 1, + anon_sym_DOLLARCACHE, + ACTIONS(630), 1, + aux_sym_unquoted_argument_token1, + STATE(272), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(209), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(618), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11786] = 10, + ACTIONS(636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(639), 1, + anon_sym_DOLLARENV, + ACTIONS(642), 1, + anon_sym_DOLLARCACHE, + ACTIONS(645), 1, + anon_sym_DQUOTE, + ACTIONS(647), 1, + aux_sym_quoted_element_token1, + STATE(234), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(210), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(633), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11826] = 10, + ACTIONS(478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(480), 1, + anon_sym_DOLLARENV, + ACTIONS(482), 1, + anon_sym_DOLLARCACHE, + ACTIONS(598), 1, + anon_sym_RPAREN, + ACTIONS(650), 1, + aux_sym_unquoted_argument_token1, + STATE(272), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(209), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(235), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11866] = 10, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLARENV, + ACTIONS(608), 1, + anon_sym_DOLLARCACHE, + ACTIONS(652), 1, + anon_sym_DQUOTE, + ACTIONS(654), 1, + aux_sym_quoted_element_token1, + STATE(234), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(210), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(602), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11906] = 10, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(571), 1, + anon_sym_DOLLARENV, + ACTIONS(573), 1, + anon_sym_DOLLARCACHE, + ACTIONS(656), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(658), 1, + aux_sym_else_command_token1, + STATE(224), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(214), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(567), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11946] = 10, + ACTIONS(663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(666), 1, + anon_sym_DOLLARENV, + ACTIONS(669), 1, + anon_sym_DOLLARCACHE, + ACTIONS(672), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(675), 1, + aux_sym_else_command_token1, + STATE(224), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(214), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(273), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(660), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [11986] = 3, + ACTIONS(679), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(677), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12008] = 3, + ACTIONS(683), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(681), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12030] = 3, + ACTIONS(687), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(685), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12052] = 3, + ACTIONS(691), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(689), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12074] = 3, + ACTIONS(695), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(693), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12096] = 3, + ACTIONS(699), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(697), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12118] = 3, + ACTIONS(703), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(701), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12140] = 3, + ACTIONS(707), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(705), 12, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + aux_sym__untrimmed_argument_token1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [12162] = 3, + ACTIONS(709), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(711), 9, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [10345] = 2, + [12181] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(586), 7, + ACTIONS(707), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(705), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + [12200] = 3, + ACTIONS(713), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(715), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12219] = 3, + ACTIONS(717), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(719), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12238] = 3, + ACTIONS(721), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(723), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12257] = 3, + ACTIONS(725), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(727), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12276] = 6, + ACTIONS(732), 1, + aux_sym_variable_token1, + ACTIONS(735), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(229), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(729), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12301] = 3, + ACTIONS(737), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(739), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12320] = 3, + ACTIONS(741), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(743), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12339] = 3, + ACTIONS(745), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(747), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12358] = 3, + ACTIONS(749), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(751), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12377] = 3, + ACTIONS(707), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(705), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + [12396] = 3, + ACTIONS(687), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(685), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [12415] = 3, + ACTIONS(753), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(755), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12434] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(629), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12459] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(628), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12484] = 6, + ACTIONS(761), 1, + aux_sym_variable_token1, + ACTIONS(763), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(229), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12509] = 3, + ACTIONS(765), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(767), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12528] = 3, + ACTIONS(769), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12547] = 3, + ACTIONS(773), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(775), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12566] = 3, + ACTIONS(777), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12585] = 3, + ACTIONS(781), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12604] = 3, + ACTIONS(785), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12623] = 3, + ACTIONS(687), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(685), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + [12642] = 3, + ACTIONS(789), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12661] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(593), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12686] = 3, + ACTIONS(691), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(689), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [12705] = 3, + ACTIONS(793), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12724] = 3, + ACTIONS(797), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12743] = 3, + ACTIONS(801), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12762] = 3, + ACTIONS(805), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12781] = 3, + ACTIONS(809), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12800] = 3, + ACTIONS(813), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12819] = 3, + ACTIONS(817), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12838] = 3, + ACTIONS(699), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(697), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [12857] = 3, + ACTIONS(703), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(701), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [12876] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(594), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12901] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(602), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12926] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(607), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12951] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(590), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [12976] = 3, + ACTIONS(821), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [12995] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(610), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [13020] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(609), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [13045] = 3, + ACTIONS(825), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(827), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13064] = 3, + ACTIONS(829), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(831), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13083] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(641), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [13108] = 3, + ACTIONS(833), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13127] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(626), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [13152] = 3, + ACTIONS(837), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13171] = 3, + ACTIONS(707), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(705), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [13190] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(687), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(685), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + [13209] = 3, + ACTIONS(841), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(843), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13228] = 3, + ACTIONS(845), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(847), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13247] = 3, + ACTIONS(691), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(689), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + [13266] = 6, + ACTIONS(759), 1, + aux_sym_variable_token1, + STATE(454), 1, + sym__escape_encoded, + STATE(625), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(239), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(757), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [13291] = 3, + ACTIONS(849), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(851), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13310] = 3, + ACTIONS(853), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(855), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13329] = 3, + ACTIONS(857), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(859), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13348] = 3, + ACTIONS(861), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(863), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13367] = 3, + ACTIONS(865), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(867), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13386] = 3, + ACTIONS(869), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(871), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13405] = 3, + ACTIONS(699), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(697), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + [13424] = 3, + ACTIONS(703), 1, + aux_sym_quoted_element_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(701), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + [13443] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(691), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(689), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + [13462] = 3, + ACTIONS(873), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(875), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13481] = 3, + ACTIONS(877), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13500] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(699), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(697), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + [13519] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(703), 2, + aux_sym_unquoted_argument_token1, + aux_sym_else_command_token1, + ACTIONS(701), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + [13538] = 3, + ACTIONS(881), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(883), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [13557] = 3, + ACTIONS(881), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(883), 7, sym_if, sym_foreach, sym_while, @@ -9829,23 +12386,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_endmacro, sym_identifier, - [10359] = 2, + [13574] = 3, + ACTIONS(817), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(588), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_identifier, - [10373] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(590), 7, + ACTIONS(819), 7, sym_if, sym_foreach, sym_while, @@ -9853,11 +12400,993 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10387] = 2, + [13591] = 3, + ACTIONS(861), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(592), 7, + ACTIONS(863), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13608] = 3, + ACTIONS(865), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(867), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13625] = 3, + ACTIONS(869), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(871), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13642] = 3, + ACTIONS(873), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(875), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13659] = 3, + ACTIONS(877), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13676] = 3, + ACTIONS(837), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13693] = 3, + ACTIONS(801), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13710] = 3, + ACTIONS(713), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(715), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13727] = 3, + ACTIONS(717), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(719), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13744] = 3, + ACTIONS(721), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(723), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [13761] = 3, + ACTIONS(773), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(775), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13778] = 3, + ACTIONS(777), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13795] = 3, + ACTIONS(781), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13812] = 3, + ACTIONS(785), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13829] = 3, + ACTIONS(881), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(883), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13846] = 3, + ACTIONS(793), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13863] = 3, + ACTIONS(797), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13880] = 3, + ACTIONS(805), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13897] = 3, + ACTIONS(809), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13914] = 3, + ACTIONS(813), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13931] = 3, + ACTIONS(817), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13948] = 3, + ACTIONS(821), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13965] = 3, + ACTIONS(825), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(827), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13982] = 3, + ACTIONS(829), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(831), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [13999] = 3, + ACTIONS(833), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14016] = 3, + ACTIONS(841), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(843), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14033] = 3, + ACTIONS(845), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(847), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14050] = 3, + ACTIONS(849), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(851), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14067] = 3, + ACTIONS(853), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(855), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14084] = 3, + ACTIONS(857), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(859), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14101] = 3, + ACTIONS(861), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(863), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14118] = 3, + ACTIONS(865), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(867), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14135] = 3, + ACTIONS(869), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(871), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14152] = 3, + ACTIONS(873), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(875), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14169] = 3, + ACTIONS(877), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14186] = 3, + ACTIONS(837), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14203] = 3, + ACTIONS(801), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14220] = 3, + ACTIONS(713), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(715), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14237] = 3, + ACTIONS(717), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(719), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14254] = 3, + ACTIONS(721), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(723), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [14271] = 3, + ACTIONS(773), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(775), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14288] = 3, + ACTIONS(777), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14305] = 3, + ACTIONS(781), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14322] = 3, + ACTIONS(785), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14339] = 3, + ACTIONS(885), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(887), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14356] = 3, + ACTIONS(793), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14373] = 3, + ACTIONS(797), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14390] = 3, + ACTIONS(805), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14407] = 3, + ACTIONS(809), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14424] = 3, + ACTIONS(813), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14441] = 3, + ACTIONS(817), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14458] = 3, + ACTIONS(821), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14475] = 3, + ACTIONS(825), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(827), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14492] = 3, + ACTIONS(829), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(831), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14509] = 3, + ACTIONS(833), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14526] = 3, + ACTIONS(841), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(843), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14543] = 3, + ACTIONS(845), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(847), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14560] = 3, + ACTIONS(849), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(851), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14577] = 3, + ACTIONS(853), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(855), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14594] = 3, + ACTIONS(857), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(859), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14611] = 3, + ACTIONS(861), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(863), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14628] = 3, + ACTIONS(865), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(867), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14645] = 3, + ACTIONS(869), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(871), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14662] = 3, + ACTIONS(873), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(875), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14679] = 3, + ACTIONS(877), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14696] = 3, + ACTIONS(837), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14713] = 3, + ACTIONS(801), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14730] = 3, + ACTIONS(713), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(715), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14747] = 3, + ACTIONS(717), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(719), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14764] = 3, + ACTIONS(721), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(723), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [14781] = 3, + ACTIONS(773), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(775), 7, sym_if, sym_foreach, sym_endforeach, @@ -9865,11 +13394,279 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10401] = 2, + [14798] = 3, + ACTIONS(853), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(484), 7, + ACTIONS(855), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14815] = 3, + ACTIONS(849), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(851), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14832] = 3, + ACTIONS(845), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(847), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14849] = 3, + ACTIONS(841), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(843), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14866] = 3, + ACTIONS(833), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14883] = 3, + ACTIONS(829), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(831), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14900] = 3, + ACTIONS(825), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(827), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14917] = 3, + ACTIONS(821), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14934] = 3, + ACTIONS(857), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(859), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14951] = 3, + ACTIONS(813), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14968] = 3, + ACTIONS(809), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [14985] = 3, + ACTIONS(805), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15002] = 3, + ACTIONS(797), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15019] = 3, + ACTIONS(793), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15036] = 3, + ACTIONS(881), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(883), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15053] = 3, + ACTIONS(785), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15070] = 3, + ACTIONS(781), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15087] = 3, + ACTIONS(777), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15104] = 3, + ACTIONS(773), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(775), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15121] = 3, + ACTIONS(721), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(723), 7, sym_if, sym_foreach, sym_endforeach, @@ -9877,50 +13674,223 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10415] = 3, - ACTIONS(594), 1, + [15138] = 3, + ACTIONS(717), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(719), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15155] = 3, + ACTIONS(713), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(715), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15172] = 3, + ACTIONS(801), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15189] = 3, + ACTIONS(837), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15206] = 3, + ACTIONS(877), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15223] = 3, + ACTIONS(873), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(875), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15240] = 3, + ACTIONS(869), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(871), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15257] = 3, + ACTIONS(865), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(867), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15274] = 3, + ACTIONS(861), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(863), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15291] = 3, + ACTIONS(857), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(859), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15308] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 2, ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(536), 6, + aux_sym__untrimmed_argument_token1, + ACTIONS(787), 6, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [10431] = 3, - ACTIONS(596), 1, + [15325] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(881), 2, ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(530), 6, + aux_sym__untrimmed_argument_token1, + ACTIONS(883), 6, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [10447] = 3, - ACTIONS(598), 1, + [15342] = 3, + ACTIONS(853), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(855), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15359] = 3, + ACTIONS(849), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(851), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15376] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(781), 2, ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(528), 6, + aux_sym__untrimmed_argument_token1, + ACTIONS(783), 6, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_identifier, - [10463] = 2, + [15393] = 3, + ACTIONS(845), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(520), 7, + ACTIONS(847), 7, sym_if, sym_foreach, sym_endforeach, @@ -9928,11 +13898,13 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10477] = 2, + [15410] = 3, + ACTIONS(889), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(514), 7, + ACTIONS(891), 7, sym_if, sym_foreach, sym_endforeach, @@ -9940,11 +13912,27 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10491] = 2, + [15427] = 3, + ACTIONS(893), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(516), 7, + ACTIONS(895), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15444] = 3, + ACTIONS(841), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(843), 7, sym_if, sym_foreach, sym_endforeach, @@ -9952,11 +13940,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10505] = 2, + [15461] = 3, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(518), 7, + ACTIONS(849), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(851), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15478] = 3, + ACTIONS(897), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(899), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [15495] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(845), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(847), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15512] = 3, + ACTIONS(833), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 7, sym_if, sym_foreach, sym_endforeach, @@ -9964,910 +13996,2967 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_macro, sym_identifier, - [10519] = 2, - ACTIONS(600), 1, - anon_sym_RPAREN, + [15529] = 3, + ACTIONS(829), 1, + aux_sym__untrimmed_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10527] = 2, - ACTIONS(602), 1, + ACTIONS(831), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15546] = 3, + ACTIONS(825), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(827), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15563] = 3, + ACTIONS(821), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15580] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(721), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(723), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15597] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(717), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(719), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15614] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(779), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15631] = 3, + ACTIONS(901), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(903), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [15648] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(713), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(715), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15665] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(795), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15682] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(799), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15699] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(801), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(803), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15716] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(807), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15733] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(811), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15750] = 3, + ACTIONS(817), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15767] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(815), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15784] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(817), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(819), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15801] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(837), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(839), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15818] = 3, + ACTIONS(813), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15835] = 3, + ACTIONS(809), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15852] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(877), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(879), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15869] = 3, + ACTIONS(805), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15886] = 3, + ACTIONS(797), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15903] = 3, + ACTIONS(905), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(907), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15920] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(873), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(875), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [15937] = 3, + ACTIONS(909), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(911), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [15954] = 3, + ACTIONS(913), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(915), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [15971] = 3, + ACTIONS(917), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(919), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [15988] = 3, + ACTIONS(793), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16005] = 3, + ACTIONS(921), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(923), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [16022] = 3, + ACTIONS(925), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(927), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [16039] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(833), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(835), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16056] = 3, + ACTIONS(929), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(931), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16073] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(773), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(775), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16090] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(841), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(843), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16107] = 3, + ACTIONS(881), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(883), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16124] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(869), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(871), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16141] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(865), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(867), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16158] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(861), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(863), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16175] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(829), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(831), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16192] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(823), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16209] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(857), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(859), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16226] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(853), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(855), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16243] = 3, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(825), 2, + ts_builtin_sym_end, + aux_sym__untrimmed_argument_token1, + ACTIONS(827), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16260] = 3, + ACTIONS(785), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16277] = 3, + ACTIONS(781), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16294] = 3, + ACTIONS(777), 1, + aux_sym__untrimmed_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [16311] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(705), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + aux_sym_variable_token1, anon_sym_RBRACE, + [16325] = 4, + ACTIONS(933), 1, + aux_sym_if_command_token1, + ACTIONS(935), 1, + anon_sym_LPAREN, + STATE(529), 1, + aux_sym_if_command_repeat1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10535] = 2, - ACTIONS(604), 1, + [16339] = 4, + ACTIONS(937), 1, + aux_sym_if_command_token1, + ACTIONS(939), 1, + anon_sym_LPAREN, + STATE(486), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16353] = 4, + ACTIONS(941), 1, + aux_sym_if_command_token1, + ACTIONS(943), 1, + anon_sym_LPAREN, + STATE(463), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16367] = 4, + ACTIONS(945), 1, + aux_sym_if_command_token1, + ACTIONS(947), 1, + anon_sym_LPAREN, + STATE(464), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16381] = 4, + ACTIONS(949), 1, + aux_sym_if_command_token1, + ACTIONS(951), 1, + anon_sym_LPAREN, + STATE(465), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16395] = 4, + ACTIONS(953), 1, + aux_sym_if_command_token1, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(466), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16409] = 4, + ACTIONS(957), 1, + aux_sym_if_command_token1, + ACTIONS(959), 1, + anon_sym_LPAREN, + STATE(467), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16423] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16437] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(965), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16451] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(967), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16465] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(969), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16479] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(971), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16493] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(973), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16507] = 4, + ACTIONS(975), 1, + aux_sym_if_command_token1, + ACTIONS(977), 1, + anon_sym_LPAREN, + STATE(522), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16521] = 4, + ACTIONS(979), 1, + aux_sym_if_command_token1, + ACTIONS(981), 1, + anon_sym_LPAREN, + STATE(520), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16535] = 4, + ACTIONS(983), 1, + aux_sym_if_command_token1, + ACTIONS(985), 1, + anon_sym_LPAREN, + STATE(518), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16549] = 4, + ACTIONS(987), 1, + aux_sym_if_command_token1, + ACTIONS(989), 1, + anon_sym_LPAREN, + STATE(516), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16563] = 4, + ACTIONS(991), 1, + aux_sym_if_command_token1, + ACTIONS(993), 1, + anon_sym_LPAREN, + STATE(513), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16577] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(995), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16591] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(997), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16605] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(999), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16619] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1001), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16633] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1003), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16647] = 4, + ACTIONS(1005), 1, + aux_sym_if_command_token1, + ACTIONS(1007), 1, + anon_sym_LPAREN, + STATE(473), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16661] = 4, + ACTIONS(1009), 1, + aux_sym_if_command_token1, + ACTIONS(1011), 1, + anon_sym_LPAREN, + STATE(474), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16675] = 4, + ACTIONS(1013), 1, + aux_sym_if_command_token1, + ACTIONS(1015), 1, + anon_sym_LPAREN, + STATE(475), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16689] = 4, + ACTIONS(1017), 1, + aux_sym_if_command_token1, + ACTIONS(1019), 1, + anon_sym_LPAREN, + STATE(476), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16703] = 4, + ACTIONS(1021), 1, + aux_sym_if_command_token1, + ACTIONS(1023), 1, + anon_sym_LPAREN, + STATE(477), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16717] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16731] = 4, + ACTIONS(1027), 1, + aux_sym_if_command_token1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + STATE(483), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16745] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1031), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16759] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16773] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1035), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16787] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1037), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16801] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16815] = 4, + ACTIONS(1041), 1, + aux_sym_if_command_token1, + ACTIONS(1043), 1, + anon_sym_LPAREN, + STATE(485), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16829] = 4, + ACTIONS(1045), 1, + aux_sym_if_command_token1, + ACTIONS(1047), 1, + anon_sym_LPAREN, + STATE(487), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16843] = 4, + ACTIONS(1049), 1, + aux_sym_if_command_token1, + ACTIONS(1051), 1, + anon_sym_LPAREN, + STATE(488), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16857] = 4, + ACTIONS(1053), 1, + aux_sym_if_command_token1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + STATE(489), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16871] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16885] = 4, + ACTIONS(1059), 1, + aux_sym_if_command_token1, + ACTIONS(1061), 1, + anon_sym_LPAREN, + STATE(494), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16899] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1063), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16913] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1065), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16927] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1067), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16941] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1069), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16955] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1071), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16969] = 4, + ACTIONS(1073), 1, + aux_sym_if_command_token1, + ACTIONS(1075), 1, + anon_sym_LPAREN, + STATE(496), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16983] = 4, + ACTIONS(1077), 1, + aux_sym_if_command_token1, + ACTIONS(1079), 1, + anon_sym_LPAREN, + STATE(497), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [16997] = 4, + ACTIONS(1081), 1, + aux_sym_if_command_token1, + ACTIONS(1083), 1, + anon_sym_LPAREN, + STATE(498), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17011] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1085), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17025] = 4, + ACTIONS(1087), 1, + aux_sym_if_command_token1, + ACTIONS(1089), 1, + anon_sym_LPAREN, + STATE(499), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17039] = 4, + ACTIONS(1091), 1, + aux_sym_if_command_token1, + ACTIONS(1093), 1, + anon_sym_LPAREN, + STATE(500), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17053] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1095), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17067] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1097), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17081] = 4, + ACTIONS(1099), 1, + aux_sym_if_command_token1, + ACTIONS(1101), 1, + anon_sym_LPAREN, + STATE(508), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17095] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1103), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17109] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1105), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17123] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1107), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17137] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1109), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17151] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1111), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17165] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1113), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17179] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1115), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17193] = 4, + ACTIONS(1117), 1, + aux_sym_if_command_token1, + ACTIONS(1119), 1, + anon_sym_LPAREN, + STATE(510), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17207] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17221] = 4, + ACTIONS(1123), 1, + aux_sym_if_command_token1, + ACTIONS(1125), 1, + anon_sym_LPAREN, + STATE(511), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17235] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1127), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17249] = 4, + ACTIONS(1129), 1, + aux_sym_if_command_token1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + STATE(512), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17263] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1133), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17277] = 4, + ACTIONS(1135), 1, + aux_sym_if_command_token1, + ACTIONS(1137), 1, + anon_sym_LPAREN, + STATE(514), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17291] = 4, + ACTIONS(1139), 1, + aux_sym_if_command_token1, + ACTIONS(1141), 1, + anon_sym_LPAREN, + STATE(515), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17305] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1143), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17319] = 4, + ACTIONS(1145), 1, + aux_sym_if_command_token1, + ACTIONS(1147), 1, + anon_sym_LPAREN, + STATE(525), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17333] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1149), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17347] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1151), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17361] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1153), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17375] = 4, + ACTIONS(1155), 1, + aux_sym_if_command_token1, + ACTIONS(1158), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17389] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1160), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17403] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1162), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17417] = 4, + ACTIONS(1164), 1, + aux_sym_if_command_token1, + ACTIONS(1166), 1, + anon_sym_LPAREN, + STATE(527), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17431] = 4, + ACTIONS(1168), 1, + aux_sym_if_command_token1, + ACTIONS(1170), 1, + anon_sym_LPAREN, + STATE(462), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17445] = 4, + ACTIONS(1172), 1, + aux_sym_if_command_token1, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(528), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17459] = 4, + ACTIONS(1176), 1, + aux_sym_if_command_token1, + ACTIONS(1178), 1, + anon_sym_LPAREN, + STATE(531), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17473] = 4, + ACTIONS(1180), 1, + aux_sym_if_command_token1, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17487] = 4, + ACTIONS(961), 1, + aux_sym_if_command_token1, + ACTIONS(1184), 1, + anon_sym_LPAREN, + STATE(530), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17501] = 4, + ACTIONS(1186), 1, + aux_sym_if_command_token1, + ACTIONS(1188), 1, + anon_sym_LPAREN, + STATE(504), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17515] = 4, + ACTIONS(1190), 1, + aux_sym_if_command_token1, + ACTIONS(1192), 1, + anon_sym_LPAREN, + STATE(538), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17529] = 4, + ACTIONS(1194), 1, + aux_sym_if_command_token1, + ACTIONS(1196), 1, + anon_sym_LPAREN, + STATE(507), 1, + aux_sym_if_command_repeat1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17543] = 3, + ACTIONS(1198), 1, + anon_sym_RPAREN, + ACTIONS(1200), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17554] = 3, + ACTIONS(1202), 1, + anon_sym_RPAREN, + ACTIONS(1204), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17565] = 3, + ACTIONS(1206), 1, + anon_sym_RPAREN, + ACTIONS(1208), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17576] = 3, + ACTIONS(1210), 1, + anon_sym_RPAREN, + ACTIONS(1212), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17587] = 3, + ACTIONS(1214), 1, + anon_sym_RPAREN, + ACTIONS(1216), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17598] = 3, + ACTIONS(1218), 1, + anon_sym_RPAREN, + ACTIONS(1220), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17609] = 3, + ACTIONS(1222), 1, + anon_sym_RPAREN, + ACTIONS(1224), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17620] = 3, + ACTIONS(1226), 1, + anon_sym_RPAREN, + ACTIONS(1228), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17631] = 3, + ACTIONS(1230), 1, + anon_sym_RPAREN, + ACTIONS(1232), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17642] = 3, + ACTIONS(1234), 1, + anon_sym_RPAREN, + ACTIONS(1236), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17653] = 3, + ACTIONS(1238), 1, + anon_sym_RPAREN, + ACTIONS(1240), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17664] = 3, + ACTIONS(1242), 1, + anon_sym_RPAREN, + ACTIONS(1244), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17675] = 3, + ACTIONS(1246), 1, + anon_sym_RPAREN, + ACTIONS(1248), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17686] = 3, + ACTIONS(1250), 1, + anon_sym_RPAREN, + ACTIONS(1252), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17697] = 3, + ACTIONS(1254), 1, + anon_sym_RPAREN, + ACTIONS(1256), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17708] = 3, + ACTIONS(1258), 1, + anon_sym_RPAREN, + ACTIONS(1260), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17719] = 3, + ACTIONS(1262), 1, + anon_sym_RPAREN, + ACTIONS(1264), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17730] = 3, + ACTIONS(1266), 1, + anon_sym_RPAREN, + ACTIONS(1268), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17741] = 3, + ACTIONS(1270), 1, + anon_sym_RPAREN, + ACTIONS(1272), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17752] = 3, + ACTIONS(1274), 1, + anon_sym_RPAREN, + ACTIONS(1276), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17763] = 3, + ACTIONS(1278), 1, + anon_sym_RPAREN, + ACTIONS(1280), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17774] = 3, + ACTIONS(1282), 1, + anon_sym_RPAREN, + ACTIONS(1284), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17785] = 3, + ACTIONS(1286), 1, + anon_sym_RPAREN, + ACTIONS(1288), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17796] = 3, + ACTIONS(1290), 1, + anon_sym_RPAREN, + ACTIONS(1292), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17807] = 3, + ACTIONS(1294), 1, + anon_sym_RPAREN, + ACTIONS(1296), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17818] = 3, + ACTIONS(1298), 1, + anon_sym_RPAREN, + ACTIONS(1300), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17829] = 2, + ACTIONS(1302), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17837] = 2, + ACTIONS(1304), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10543] = 2, - ACTIONS(606), 1, + [17845] = 2, + ACTIONS(677), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10551] = 2, - ACTIONS(608), 1, + [17853] = 2, + ACTIONS(693), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17861] = 2, + ACTIONS(1306), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17869] = 2, + ACTIONS(1308), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17877] = 2, + ACTIONS(1310), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17885] = 2, + ACTIONS(1312), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17893] = 2, + ACTIONS(1314), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17901] = 2, + ACTIONS(1316), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17909] = 2, + ACTIONS(681), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17917] = 2, + ACTIONS(488), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17925] = 2, + ACTIONS(1318), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17933] = 2, + ACTIONS(1320), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17941] = 2, + ACTIONS(1322), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17949] = 2, + ACTIONS(1324), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17957] = 2, + ACTIONS(1326), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10559] = 2, - ACTIONS(610), 1, + [17965] = 2, + ACTIONS(1328), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17973] = 2, + ACTIONS(1330), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17981] = 2, + ACTIONS(1332), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17989] = 2, + ACTIONS(1334), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [17997] = 2, + ACTIONS(1336), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10567] = 2, - ACTIONS(612), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10575] = 2, - ACTIONS(614), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10583] = 2, - ACTIONS(616), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10591] = 2, - ACTIONS(618), 1, + [18005] = 2, + ACTIONS(1338), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10599] = 2, - ACTIONS(620), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10607] = 2, - ACTIONS(622), 1, + [18013] = 2, + ACTIONS(1340), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10615] = 2, - ACTIONS(624), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10623] = 2, - ACTIONS(626), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10631] = 2, - ACTIONS(628), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10639] = 2, - ACTIONS(630), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10647] = 2, - ACTIONS(632), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10655] = 2, - ACTIONS(634), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10663] = 2, - ACTIONS(636), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10671] = 2, - ACTIONS(638), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10679] = 2, - ACTIONS(640), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10687] = 2, - ACTIONS(642), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10695] = 2, - ACTIONS(644), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10703] = 2, - ACTIONS(646), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10711] = 2, - ACTIONS(648), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10719] = 2, - ACTIONS(650), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10727] = 2, - ACTIONS(464), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10735] = 2, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10743] = 2, - ACTIONS(654), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10751] = 2, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10759] = 2, - ACTIONS(658), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10767] = 2, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10775] = 2, - ACTIONS(662), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10783] = 2, - ACTIONS(664), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10791] = 2, - ACTIONS(666), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10799] = 2, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10807] = 2, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10815] = 2, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10823] = 2, - ACTIONS(674), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10831] = 2, - ACTIONS(676), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10839] = 2, - ACTIONS(678), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10847] = 2, - ACTIONS(680), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10855] = 2, - ACTIONS(682), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10863] = 2, - ACTIONS(684), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10871] = 2, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10879] = 2, - ACTIONS(688), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10887] = 2, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10895] = 2, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10903] = 2, - ACTIONS(694), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10911] = 2, - ACTIONS(696), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10919] = 2, - ACTIONS(698), 1, + [18021] = 2, + ACTIONS(1342), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10927] = 2, - ACTIONS(700), 1, + [18029] = 2, + ACTIONS(1344), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10935] = 2, - ACTIONS(702), 1, - anon_sym_LPAREN, + [18037] = 2, + ACTIONS(1346), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10943] = 2, - ACTIONS(704), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10951] = 2, - ACTIONS(706), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10959] = 2, - ACTIONS(708), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10967] = 2, - ACTIONS(710), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10975] = 2, - ACTIONS(712), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10983] = 2, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [10991] = 2, - ACTIONS(456), 1, + [18045] = 2, + ACTIONS(543), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [10999] = 2, - ACTIONS(452), 1, + [18053] = 2, + ACTIONS(545), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11007] = 2, - ACTIONS(716), 1, - anon_sym_LPAREN, + [18061] = 2, + ACTIONS(1348), 1, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11015] = 2, - ACTIONS(718), 1, - anon_sym_LPAREN, + [18069] = 2, + ACTIONS(1350), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11023] = 2, - ACTIONS(720), 1, - anon_sym_LPAREN, + [18077] = 2, + ACTIONS(1352), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11031] = 2, - ACTIONS(722), 1, - anon_sym_LPAREN, + [18085] = 2, + ACTIONS(1354), 1, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11039] = 2, - ACTIONS(724), 1, - anon_sym_LPAREN, + [18093] = 2, + ACTIONS(1356), 1, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11047] = 2, - ACTIONS(726), 1, - anon_sym_LPAREN, + [18101] = 2, + ACTIONS(1358), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11055] = 2, - ACTIONS(728), 1, - anon_sym_LPAREN, + [18109] = 2, + ACTIONS(1360), 1, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11063] = 2, - ACTIONS(730), 1, - anon_sym_LPAREN, + [18117] = 2, + ACTIONS(1362), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11071] = 2, - ACTIONS(732), 1, - anon_sym_LPAREN, + [18125] = 2, + ACTIONS(559), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11079] = 2, - ACTIONS(734), 1, - anon_sym_LPAREN, + [18133] = 2, + ACTIONS(1364), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11087] = 2, - ACTIONS(736), 1, - anon_sym_LPAREN, + [18141] = 2, + ACTIONS(1366), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11095] = 2, - ACTIONS(738), 1, - anon_sym_LPAREN, + [18149] = 2, + ACTIONS(1368), 1, + aux_sym_else_command_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11103] = 2, - ACTIONS(740), 1, - anon_sym_LPAREN, + [18157] = 2, + ACTIONS(1370), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11111] = 2, - ACTIONS(742), 1, - anon_sym_LPAREN, + [18165] = 2, + ACTIONS(1372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11119] = 2, - ACTIONS(744), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [11127] = 2, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [11135] = 2, - ACTIONS(748), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [11143] = 2, - ACTIONS(750), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [11151] = 2, - ACTIONS(752), 1, + [18173] = 2, + ACTIONS(1374), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11159] = 2, - ACTIONS(754), 1, + [18181] = 2, + ACTIONS(1376), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18189] = 2, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18197] = 2, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18205] = 2, + ACTIONS(1380), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18213] = 2, + ACTIONS(1382), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18221] = 2, + ACTIONS(1384), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18229] = 2, + ACTIONS(1386), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18237] = 2, + ACTIONS(1388), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18245] = 2, + ACTIONS(1390), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18253] = 2, + ACTIONS(1392), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18261] = 2, + ACTIONS(1394), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18269] = 2, + ACTIONS(1396), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18277] = 2, + ACTIONS(1398), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18285] = 2, + ACTIONS(1400), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18293] = 2, + ACTIONS(1402), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18301] = 2, + ACTIONS(1404), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11167] = 2, - ACTIONS(756), 1, + [18309] = 2, + ACTIONS(1406), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18317] = 2, + ACTIONS(1408), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18325] = 2, + ACTIONS(1410), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18333] = 2, + ACTIONS(541), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18341] = 2, + ACTIONS(1412), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18349] = 2, + ACTIONS(1414), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18357] = 2, + ACTIONS(1416), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18365] = 2, + ACTIONS(1418), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18373] = 2, + ACTIONS(1420), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [11175] = 2, - ACTIONS(758), 1, + [18381] = 2, + ACTIONS(1422), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, + [18389] = 2, + ACTIONS(677), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18397] = 2, + ACTIONS(1424), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18405] = 2, + ACTIONS(681), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18413] = 2, + ACTIONS(1426), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18421] = 2, + ACTIONS(1428), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18429] = 2, + ACTIONS(1430), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18437] = 2, + ACTIONS(693), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18445] = 2, + ACTIONS(1432), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18453] = 2, + ACTIONS(1434), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18461] = 2, + ACTIONS(1436), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18469] = 2, + ACTIONS(1438), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18477] = 2, + ACTIONS(1440), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18485] = 2, + ACTIONS(1442), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18493] = 2, + ACTIONS(1444), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18501] = 2, + ACTIONS(1446), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18509] = 2, + ACTIONS(1448), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18517] = 2, + ACTIONS(1450), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18525] = 2, + ACTIONS(1452), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18533] = 2, + ACTIONS(1454), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18541] = 2, + ACTIONS(1456), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18549] = 2, + ACTIONS(1458), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18557] = 2, + ACTIONS(1460), 1, + aux_sym_else_command_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18565] = 2, + ACTIONS(1462), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [18573] = 2, + ACTIONS(1464), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 62, - [SMALL_STATE(4)] = 124, - [SMALL_STATE(5)] = 186, - [SMALL_STATE(6)] = 248, - [SMALL_STATE(7)] = 310, - [SMALL_STATE(8)] = 372, - [SMALL_STATE(9)] = 434, - [SMALL_STATE(10)] = 496, - [SMALL_STATE(11)] = 558, - [SMALL_STATE(12)] = 620, - [SMALL_STATE(13)] = 682, - [SMALL_STATE(14)] = 744, - [SMALL_STATE(15)] = 803, - [SMALL_STATE(16)] = 857, - [SMALL_STATE(17)] = 911, - [SMALL_STATE(18)] = 965, - [SMALL_STATE(19)] = 1019, - [SMALL_STATE(20)] = 1073, - [SMALL_STATE(21)] = 1127, - [SMALL_STATE(22)] = 1181, - [SMALL_STATE(23)] = 1235, - [SMALL_STATE(24)] = 1289, - [SMALL_STATE(25)] = 1343, - [SMALL_STATE(26)] = 1397, - [SMALL_STATE(27)] = 1451, - [SMALL_STATE(28)] = 1505, - [SMALL_STATE(29)] = 1559, - [SMALL_STATE(30)] = 1613, - [SMALL_STATE(31)] = 1667, - [SMALL_STATE(32)] = 1721, - [SMALL_STATE(33)] = 1775, - [SMALL_STATE(34)] = 1829, - [SMALL_STATE(35)] = 1883, - [SMALL_STATE(36)] = 1937, - [SMALL_STATE(37)] = 1991, - [SMALL_STATE(38)] = 2045, - [SMALL_STATE(39)] = 2099, - [SMALL_STATE(40)] = 2153, - [SMALL_STATE(41)] = 2207, - [SMALL_STATE(42)] = 2261, - [SMALL_STATE(43)] = 2315, - [SMALL_STATE(44)] = 2369, - [SMALL_STATE(45)] = 2423, - [SMALL_STATE(46)] = 2477, - [SMALL_STATE(47)] = 2531, - [SMALL_STATE(48)] = 2585, - [SMALL_STATE(49)] = 2639, - [SMALL_STATE(50)] = 2693, - [SMALL_STATE(51)] = 2747, - [SMALL_STATE(52)] = 2801, - [SMALL_STATE(53)] = 2855, - [SMALL_STATE(54)] = 2909, - [SMALL_STATE(55)] = 2963, - [SMALL_STATE(56)] = 3017, - [SMALL_STATE(57)] = 3071, - [SMALL_STATE(58)] = 3125, - [SMALL_STATE(59)] = 3179, - [SMALL_STATE(60)] = 3233, - [SMALL_STATE(61)] = 3287, - [SMALL_STATE(62)] = 3341, - [SMALL_STATE(63)] = 3395, - [SMALL_STATE(64)] = 3449, - [SMALL_STATE(65)] = 3503, - [SMALL_STATE(66)] = 3556, - [SMALL_STATE(67)] = 3609, - [SMALL_STATE(68)] = 3662, - [SMALL_STATE(69)] = 3715, - [SMALL_STATE(70)] = 3768, - [SMALL_STATE(71)] = 3821, - [SMALL_STATE(72)] = 3874, - [SMALL_STATE(73)] = 3927, - [SMALL_STATE(74)] = 3980, - [SMALL_STATE(75)] = 4033, - [SMALL_STATE(76)] = 4086, - [SMALL_STATE(77)] = 4139, - [SMALL_STATE(78)] = 4192, - [SMALL_STATE(79)] = 4245, - [SMALL_STATE(80)] = 4298, - [SMALL_STATE(81)] = 4351, - [SMALL_STATE(82)] = 4404, - [SMALL_STATE(83)] = 4457, - [SMALL_STATE(84)] = 4510, - [SMALL_STATE(85)] = 4564, - [SMALL_STATE(86)] = 4618, - [SMALL_STATE(87)] = 4672, - [SMALL_STATE(88)] = 4726, - [SMALL_STATE(89)] = 4780, - [SMALL_STATE(90)] = 4834, - [SMALL_STATE(91)] = 4888, - [SMALL_STATE(92)] = 4942, - [SMALL_STATE(93)] = 4996, - [SMALL_STATE(94)] = 5050, - [SMALL_STATE(95)] = 5104, - [SMALL_STATE(96)] = 5158, - [SMALL_STATE(97)] = 5212, - [SMALL_STATE(98)] = 5266, - [SMALL_STATE(99)] = 5320, - [SMALL_STATE(100)] = 5374, - [SMALL_STATE(101)] = 5428, - [SMALL_STATE(102)] = 5482, - [SMALL_STATE(103)] = 5536, - [SMALL_STATE(104)] = 5590, - [SMALL_STATE(105)] = 5644, - [SMALL_STATE(106)] = 5698, - [SMALL_STATE(107)] = 5752, - [SMALL_STATE(108)] = 5806, - [SMALL_STATE(109)] = 5860, - [SMALL_STATE(110)] = 5914, - [SMALL_STATE(111)] = 5968, - [SMALL_STATE(112)] = 6022, - [SMALL_STATE(113)] = 6076, - [SMALL_STATE(114)] = 6130, - [SMALL_STATE(115)] = 6184, - [SMALL_STATE(116)] = 6238, - [SMALL_STATE(117)] = 6292, - [SMALL_STATE(118)] = 6346, - [SMALL_STATE(119)] = 6400, - [SMALL_STATE(120)] = 6454, - [SMALL_STATE(121)] = 6508, - [SMALL_STATE(122)] = 6562, - [SMALL_STATE(123)] = 6616, - [SMALL_STATE(124)] = 6670, - [SMALL_STATE(125)] = 6724, - [SMALL_STATE(126)] = 6778, - [SMALL_STATE(127)] = 6832, - [SMALL_STATE(128)] = 6886, - [SMALL_STATE(129)] = 6940, - [SMALL_STATE(130)] = 6994, - [SMALL_STATE(131)] = 7048, - [SMALL_STATE(132)] = 7102, - [SMALL_STATE(133)] = 7153, - [SMALL_STATE(134)] = 7204, - [SMALL_STATE(135)] = 7255, - [SMALL_STATE(136)] = 7306, - [SMALL_STATE(137)] = 7357, - [SMALL_STATE(138)] = 7408, - [SMALL_STATE(139)] = 7450, - [SMALL_STATE(140)] = 7492, - [SMALL_STATE(141)] = 7535, - [SMALL_STATE(142)] = 7578, - [SMALL_STATE(143)] = 7618, - [SMALL_STATE(144)] = 7658, - [SMALL_STATE(145)] = 7698, - [SMALL_STATE(146)] = 7738, - [SMALL_STATE(147)] = 7759, - [SMALL_STATE(148)] = 7780, - [SMALL_STATE(149)] = 7801, - [SMALL_STATE(150)] = 7822, - [SMALL_STATE(151)] = 7843, - [SMALL_STATE(152)] = 7864, - [SMALL_STATE(153)] = 7885, - [SMALL_STATE(154)] = 7906, - [SMALL_STATE(155)] = 7931, - [SMALL_STATE(156)] = 7950, - [SMALL_STATE(157)] = 7975, - [SMALL_STATE(158)] = 8000, - [SMALL_STATE(159)] = 8025, - [SMALL_STATE(160)] = 8050, - [SMALL_STATE(161)] = 8067, - [SMALL_STATE(162)] = 8086, - [SMALL_STATE(163)] = 8111, - [SMALL_STATE(164)] = 8136, - [SMALL_STATE(165)] = 8153, - [SMALL_STATE(166)] = 8170, - [SMALL_STATE(167)] = 8195, - [SMALL_STATE(168)] = 8220, - [SMALL_STATE(169)] = 8245, - [SMALL_STATE(170)] = 8262, - [SMALL_STATE(171)] = 8281, - [SMALL_STATE(172)] = 8306, - [SMALL_STATE(173)] = 8325, - [SMALL_STATE(174)] = 8344, - [SMALL_STATE(175)] = 8361, - [SMALL_STATE(176)] = 8377, - [SMALL_STATE(177)] = 8393, - [SMALL_STATE(178)] = 8409, - [SMALL_STATE(179)] = 8425, - [SMALL_STATE(180)] = 8441, - [SMALL_STATE(181)] = 8457, - [SMALL_STATE(182)] = 8473, - [SMALL_STATE(183)] = 8489, - [SMALL_STATE(184)] = 8505, - [SMALL_STATE(185)] = 8521, - [SMALL_STATE(186)] = 8537, - [SMALL_STATE(187)] = 8553, - [SMALL_STATE(188)] = 8569, - [SMALL_STATE(189)] = 8585, - [SMALL_STATE(190)] = 8601, - [SMALL_STATE(191)] = 8617, - [SMALL_STATE(192)] = 8633, - [SMALL_STATE(193)] = 8649, - [SMALL_STATE(194)] = 8665, - [SMALL_STATE(195)] = 8681, - [SMALL_STATE(196)] = 8697, - [SMALL_STATE(197)] = 8713, - [SMALL_STATE(198)] = 8729, - [SMALL_STATE(199)] = 8745, - [SMALL_STATE(200)] = 8761, - [SMALL_STATE(201)] = 8777, - [SMALL_STATE(202)] = 8793, - [SMALL_STATE(203)] = 8809, - [SMALL_STATE(204)] = 8823, - [SMALL_STATE(205)] = 8839, - [SMALL_STATE(206)] = 8853, - [SMALL_STATE(207)] = 8867, - [SMALL_STATE(208)] = 8881, - [SMALL_STATE(209)] = 8895, - [SMALL_STATE(210)] = 8909, - [SMALL_STATE(211)] = 8923, - [SMALL_STATE(212)] = 8937, - [SMALL_STATE(213)] = 8951, - [SMALL_STATE(214)] = 8965, - [SMALL_STATE(215)] = 8979, - [SMALL_STATE(216)] = 8993, - [SMALL_STATE(217)] = 9007, - [SMALL_STATE(218)] = 9021, - [SMALL_STATE(219)] = 9035, - [SMALL_STATE(220)] = 9049, - [SMALL_STATE(221)] = 9063, - [SMALL_STATE(222)] = 9077, - [SMALL_STATE(223)] = 9091, - [SMALL_STATE(224)] = 9105, - [SMALL_STATE(225)] = 9119, - [SMALL_STATE(226)] = 9133, - [SMALL_STATE(227)] = 9147, - [SMALL_STATE(228)] = 9161, - [SMALL_STATE(229)] = 9175, - [SMALL_STATE(230)] = 9189, - [SMALL_STATE(231)] = 9203, - [SMALL_STATE(232)] = 9217, - [SMALL_STATE(233)] = 9231, - [SMALL_STATE(234)] = 9245, - [SMALL_STATE(235)] = 9259, - [SMALL_STATE(236)] = 9273, - [SMALL_STATE(237)] = 9287, - [SMALL_STATE(238)] = 9301, - [SMALL_STATE(239)] = 9315, - [SMALL_STATE(240)] = 9329, - [SMALL_STATE(241)] = 9343, - [SMALL_STATE(242)] = 9357, - [SMALL_STATE(243)] = 9371, - [SMALL_STATE(244)] = 9385, - [SMALL_STATE(245)] = 9399, - [SMALL_STATE(246)] = 9413, - [SMALL_STATE(247)] = 9427, - [SMALL_STATE(248)] = 9441, - [SMALL_STATE(249)] = 9455, - [SMALL_STATE(250)] = 9469, - [SMALL_STATE(251)] = 9483, - [SMALL_STATE(252)] = 9497, - [SMALL_STATE(253)] = 9511, - [SMALL_STATE(254)] = 9525, - [SMALL_STATE(255)] = 9539, - [SMALL_STATE(256)] = 9553, - [SMALL_STATE(257)] = 9567, - [SMALL_STATE(258)] = 9581, - [SMALL_STATE(259)] = 9595, - [SMALL_STATE(260)] = 9609, - [SMALL_STATE(261)] = 9623, - [SMALL_STATE(262)] = 9637, - [SMALL_STATE(263)] = 9651, - [SMALL_STATE(264)] = 9665, - [SMALL_STATE(265)] = 9679, - [SMALL_STATE(266)] = 9693, - [SMALL_STATE(267)] = 9707, - [SMALL_STATE(268)] = 9721, - [SMALL_STATE(269)] = 9737, - [SMALL_STATE(270)] = 9753, - [SMALL_STATE(271)] = 9767, - [SMALL_STATE(272)] = 9783, - [SMALL_STATE(273)] = 9799, - [SMALL_STATE(274)] = 9815, - [SMALL_STATE(275)] = 9829, - [SMALL_STATE(276)] = 9843, - [SMALL_STATE(277)] = 9857, - [SMALL_STATE(278)] = 9871, - [SMALL_STATE(279)] = 9885, - [SMALL_STATE(280)] = 9899, - [SMALL_STATE(281)] = 9913, - [SMALL_STATE(282)] = 9929, - [SMALL_STATE(283)] = 9945, - [SMALL_STATE(284)] = 9961, - [SMALL_STATE(285)] = 9977, - [SMALL_STATE(286)] = 9993, - [SMALL_STATE(287)] = 10007, - [SMALL_STATE(288)] = 10021, - [SMALL_STATE(289)] = 10035, - [SMALL_STATE(290)] = 10049, - [SMALL_STATE(291)] = 10063, - [SMALL_STATE(292)] = 10077, - [SMALL_STATE(293)] = 10091, - [SMALL_STATE(294)] = 10105, - [SMALL_STATE(295)] = 10119, - [SMALL_STATE(296)] = 10133, - [SMALL_STATE(297)] = 10149, - [SMALL_STATE(298)] = 10163, - [SMALL_STATE(299)] = 10177, - [SMALL_STATE(300)] = 10193, - [SMALL_STATE(301)] = 10207, - [SMALL_STATE(302)] = 10223, - [SMALL_STATE(303)] = 10239, - [SMALL_STATE(304)] = 10255, - [SMALL_STATE(305)] = 10271, - [SMALL_STATE(306)] = 10285, - [SMALL_STATE(307)] = 10301, - [SMALL_STATE(308)] = 10315, - [SMALL_STATE(309)] = 10329, - [SMALL_STATE(310)] = 10345, - [SMALL_STATE(311)] = 10359, - [SMALL_STATE(312)] = 10373, - [SMALL_STATE(313)] = 10387, - [SMALL_STATE(314)] = 10401, - [SMALL_STATE(315)] = 10415, - [SMALL_STATE(316)] = 10431, - [SMALL_STATE(317)] = 10447, - [SMALL_STATE(318)] = 10463, - [SMALL_STATE(319)] = 10477, - [SMALL_STATE(320)] = 10491, - [SMALL_STATE(321)] = 10505, - [SMALL_STATE(322)] = 10519, - [SMALL_STATE(323)] = 10527, - [SMALL_STATE(324)] = 10535, - [SMALL_STATE(325)] = 10543, - [SMALL_STATE(326)] = 10551, - [SMALL_STATE(327)] = 10559, - [SMALL_STATE(328)] = 10567, - [SMALL_STATE(329)] = 10575, - [SMALL_STATE(330)] = 10583, - [SMALL_STATE(331)] = 10591, - [SMALL_STATE(332)] = 10599, - [SMALL_STATE(333)] = 10607, - [SMALL_STATE(334)] = 10615, - [SMALL_STATE(335)] = 10623, - [SMALL_STATE(336)] = 10631, - [SMALL_STATE(337)] = 10639, - [SMALL_STATE(338)] = 10647, - [SMALL_STATE(339)] = 10655, - [SMALL_STATE(340)] = 10663, - [SMALL_STATE(341)] = 10671, - [SMALL_STATE(342)] = 10679, - [SMALL_STATE(343)] = 10687, - [SMALL_STATE(344)] = 10695, - [SMALL_STATE(345)] = 10703, - [SMALL_STATE(346)] = 10711, - [SMALL_STATE(347)] = 10719, - [SMALL_STATE(348)] = 10727, - [SMALL_STATE(349)] = 10735, - [SMALL_STATE(350)] = 10743, - [SMALL_STATE(351)] = 10751, - [SMALL_STATE(352)] = 10759, - [SMALL_STATE(353)] = 10767, - [SMALL_STATE(354)] = 10775, - [SMALL_STATE(355)] = 10783, - [SMALL_STATE(356)] = 10791, - [SMALL_STATE(357)] = 10799, - [SMALL_STATE(358)] = 10807, - [SMALL_STATE(359)] = 10815, - [SMALL_STATE(360)] = 10823, - [SMALL_STATE(361)] = 10831, - [SMALL_STATE(362)] = 10839, - [SMALL_STATE(363)] = 10847, - [SMALL_STATE(364)] = 10855, - [SMALL_STATE(365)] = 10863, - [SMALL_STATE(366)] = 10871, - [SMALL_STATE(367)] = 10879, - [SMALL_STATE(368)] = 10887, - [SMALL_STATE(369)] = 10895, - [SMALL_STATE(370)] = 10903, - [SMALL_STATE(371)] = 10911, - [SMALL_STATE(372)] = 10919, - [SMALL_STATE(373)] = 10927, - [SMALL_STATE(374)] = 10935, - [SMALL_STATE(375)] = 10943, - [SMALL_STATE(376)] = 10951, - [SMALL_STATE(377)] = 10959, - [SMALL_STATE(378)] = 10967, - [SMALL_STATE(379)] = 10975, - [SMALL_STATE(380)] = 10983, - [SMALL_STATE(381)] = 10991, - [SMALL_STATE(382)] = 10999, - [SMALL_STATE(383)] = 11007, - [SMALL_STATE(384)] = 11015, - [SMALL_STATE(385)] = 11023, - [SMALL_STATE(386)] = 11031, - [SMALL_STATE(387)] = 11039, - [SMALL_STATE(388)] = 11047, - [SMALL_STATE(389)] = 11055, - [SMALL_STATE(390)] = 11063, - [SMALL_STATE(391)] = 11071, - [SMALL_STATE(392)] = 11079, - [SMALL_STATE(393)] = 11087, - [SMALL_STATE(394)] = 11095, - [SMALL_STATE(395)] = 11103, - [SMALL_STATE(396)] = 11111, - [SMALL_STATE(397)] = 11119, - [SMALL_STATE(398)] = 11127, - [SMALL_STATE(399)] = 11135, - [SMALL_STATE(400)] = 11143, - [SMALL_STATE(401)] = 11151, - [SMALL_STATE(402)] = 11159, - [SMALL_STATE(403)] = 11167, - [SMALL_STATE(404)] = 11175, + [SMALL_STATE(3)] = 66, + [SMALL_STATE(4)] = 132, + [SMALL_STATE(5)] = 198, + [SMALL_STATE(6)] = 264, + [SMALL_STATE(7)] = 330, + [SMALL_STATE(8)] = 396, + [SMALL_STATE(9)] = 462, + [SMALL_STATE(10)] = 528, + [SMALL_STATE(11)] = 594, + [SMALL_STATE(12)] = 660, + [SMALL_STATE(13)] = 726, + [SMALL_STATE(14)] = 792, + [SMALL_STATE(15)] = 855, + [SMALL_STATE(16)] = 913, + [SMALL_STATE(17)] = 971, + [SMALL_STATE(18)] = 1029, + [SMALL_STATE(19)] = 1087, + [SMALL_STATE(20)] = 1145, + [SMALL_STATE(21)] = 1203, + [SMALL_STATE(22)] = 1261, + [SMALL_STATE(23)] = 1319, + [SMALL_STATE(24)] = 1377, + [SMALL_STATE(25)] = 1435, + [SMALL_STATE(26)] = 1493, + [SMALL_STATE(27)] = 1551, + [SMALL_STATE(28)] = 1609, + [SMALL_STATE(29)] = 1667, + [SMALL_STATE(30)] = 1725, + [SMALL_STATE(31)] = 1783, + [SMALL_STATE(32)] = 1841, + [SMALL_STATE(33)] = 1899, + [SMALL_STATE(34)] = 1957, + [SMALL_STATE(35)] = 2015, + [SMALL_STATE(36)] = 2073, + [SMALL_STATE(37)] = 2131, + [SMALL_STATE(38)] = 2189, + [SMALL_STATE(39)] = 2247, + [SMALL_STATE(40)] = 2305, + [SMALL_STATE(41)] = 2363, + [SMALL_STATE(42)] = 2421, + [SMALL_STATE(43)] = 2479, + [SMALL_STATE(44)] = 2537, + [SMALL_STATE(45)] = 2595, + [SMALL_STATE(46)] = 2653, + [SMALL_STATE(47)] = 2711, + [SMALL_STATE(48)] = 2769, + [SMALL_STATE(49)] = 2827, + [SMALL_STATE(50)] = 2885, + [SMALL_STATE(51)] = 2943, + [SMALL_STATE(52)] = 3001, + [SMALL_STATE(53)] = 3059, + [SMALL_STATE(54)] = 3117, + [SMALL_STATE(55)] = 3175, + [SMALL_STATE(56)] = 3233, + [SMALL_STATE(57)] = 3291, + [SMALL_STATE(58)] = 3349, + [SMALL_STATE(59)] = 3407, + [SMALL_STATE(60)] = 3465, + [SMALL_STATE(61)] = 3523, + [SMALL_STATE(62)] = 3581, + [SMALL_STATE(63)] = 3639, + [SMALL_STATE(64)] = 3697, + [SMALL_STATE(65)] = 3755, + [SMALL_STATE(66)] = 3813, + [SMALL_STATE(67)] = 3871, + [SMALL_STATE(68)] = 3929, + [SMALL_STATE(69)] = 3987, + [SMALL_STATE(70)] = 4045, + [SMALL_STATE(71)] = 4103, + [SMALL_STATE(72)] = 4161, + [SMALL_STATE(73)] = 4219, + [SMALL_STATE(74)] = 4277, + [SMALL_STATE(75)] = 4335, + [SMALL_STATE(76)] = 4393, + [SMALL_STATE(77)] = 4451, + [SMALL_STATE(78)] = 4509, + [SMALL_STATE(79)] = 4567, + [SMALL_STATE(80)] = 4625, + [SMALL_STATE(81)] = 4683, + [SMALL_STATE(82)] = 4741, + [SMALL_STATE(83)] = 4799, + [SMALL_STATE(84)] = 4857, + [SMALL_STATE(85)] = 4915, + [SMALL_STATE(86)] = 4973, + [SMALL_STATE(87)] = 5031, + [SMALL_STATE(88)] = 5089, + [SMALL_STATE(89)] = 5147, + [SMALL_STATE(90)] = 5205, + [SMALL_STATE(91)] = 5263, + [SMALL_STATE(92)] = 5321, + [SMALL_STATE(93)] = 5379, + [SMALL_STATE(94)] = 5437, + [SMALL_STATE(95)] = 5495, + [SMALL_STATE(96)] = 5553, + [SMALL_STATE(97)] = 5611, + [SMALL_STATE(98)] = 5669, + [SMALL_STATE(99)] = 5727, + [SMALL_STATE(100)] = 5785, + [SMALL_STATE(101)] = 5843, + [SMALL_STATE(102)] = 5901, + [SMALL_STATE(103)] = 5959, + [SMALL_STATE(104)] = 6017, + [SMALL_STATE(105)] = 6075, + [SMALL_STATE(106)] = 6133, + [SMALL_STATE(107)] = 6191, + [SMALL_STATE(108)] = 6249, + [SMALL_STATE(109)] = 6307, + [SMALL_STATE(110)] = 6365, + [SMALL_STATE(111)] = 6423, + [SMALL_STATE(112)] = 6481, + [SMALL_STATE(113)] = 6539, + [SMALL_STATE(114)] = 6597, + [SMALL_STATE(115)] = 6655, + [SMALL_STATE(116)] = 6713, + [SMALL_STATE(117)] = 6771, + [SMALL_STATE(118)] = 6829, + [SMALL_STATE(119)] = 6887, + [SMALL_STATE(120)] = 6945, + [SMALL_STATE(121)] = 7003, + [SMALL_STATE(122)] = 7061, + [SMALL_STATE(123)] = 7119, + [SMALL_STATE(124)] = 7177, + [SMALL_STATE(125)] = 7235, + [SMALL_STATE(126)] = 7293, + [SMALL_STATE(127)] = 7351, + [SMALL_STATE(128)] = 7409, + [SMALL_STATE(129)] = 7467, + [SMALL_STATE(130)] = 7525, + [SMALL_STATE(131)] = 7583, + [SMALL_STATE(132)] = 7641, + [SMALL_STATE(133)] = 7699, + [SMALL_STATE(134)] = 7757, + [SMALL_STATE(135)] = 7815, + [SMALL_STATE(136)] = 7873, + [SMALL_STATE(137)] = 7931, + [SMALL_STATE(138)] = 7989, + [SMALL_STATE(139)] = 8047, + [SMALL_STATE(140)] = 8105, + [SMALL_STATE(141)] = 8163, + [SMALL_STATE(142)] = 8221, + [SMALL_STATE(143)] = 8279, + [SMALL_STATE(144)] = 8337, + [SMALL_STATE(145)] = 8395, + [SMALL_STATE(146)] = 8453, + [SMALL_STATE(147)] = 8511, + [SMALL_STATE(148)] = 8569, + [SMALL_STATE(149)] = 8627, + [SMALL_STATE(150)] = 8685, + [SMALL_STATE(151)] = 8743, + [SMALL_STATE(152)] = 8801, + [SMALL_STATE(153)] = 8859, + [SMALL_STATE(154)] = 8917, + [SMALL_STATE(155)] = 8975, + [SMALL_STATE(156)] = 9033, + [SMALL_STATE(157)] = 9091, + [SMALL_STATE(158)] = 9149, + [SMALL_STATE(159)] = 9207, + [SMALL_STATE(160)] = 9265, + [SMALL_STATE(161)] = 9318, + [SMALL_STATE(162)] = 9373, + [SMALL_STATE(163)] = 9428, + [SMALL_STATE(164)] = 9481, + [SMALL_STATE(165)] = 9536, + [SMALL_STATE(166)] = 9589, + [SMALL_STATE(167)] = 9642, + [SMALL_STATE(168)] = 9695, + [SMALL_STATE(169)] = 9750, + [SMALL_STATE(170)] = 9803, + [SMALL_STATE(171)] = 9856, + [SMALL_STATE(172)] = 9909, + [SMALL_STATE(173)] = 9962, + [SMALL_STATE(174)] = 10015, + [SMALL_STATE(175)] = 10068, + [SMALL_STATE(176)] = 10123, + [SMALL_STATE(177)] = 10176, + [SMALL_STATE(178)] = 10231, + [SMALL_STATE(179)] = 10281, + [SMALL_STATE(180)] = 10331, + [SMALL_STATE(181)] = 10381, + [SMALL_STATE(182)] = 10431, + [SMALL_STATE(183)] = 10481, + [SMALL_STATE(184)] = 10531, + [SMALL_STATE(185)] = 10581, + [SMALL_STATE(186)] = 10631, + [SMALL_STATE(187)] = 10681, + [SMALL_STATE(188)] = 10731, + [SMALL_STATE(189)] = 10781, + [SMALL_STATE(190)] = 10831, + [SMALL_STATE(191)] = 10881, + [SMALL_STATE(192)] = 10931, + [SMALL_STATE(193)] = 10981, + [SMALL_STATE(194)] = 11031, + [SMALL_STATE(195)] = 11081, + [SMALL_STATE(196)] = 11131, + [SMALL_STATE(197)] = 11181, + [SMALL_STATE(198)] = 11231, + [SMALL_STATE(199)] = 11281, + [SMALL_STATE(200)] = 11331, + [SMALL_STATE(201)] = 11381, + [SMALL_STATE(202)] = 11431, + [SMALL_STATE(203)] = 11481, + [SMALL_STATE(204)] = 11531, + [SMALL_STATE(205)] = 11574, + [SMALL_STATE(206)] = 11617, + [SMALL_STATE(207)] = 11660, + [SMALL_STATE(208)] = 11703, + [SMALL_STATE(209)] = 11746, + [SMALL_STATE(210)] = 11786, + [SMALL_STATE(211)] = 11826, + [SMALL_STATE(212)] = 11866, + [SMALL_STATE(213)] = 11906, + [SMALL_STATE(214)] = 11946, + [SMALL_STATE(215)] = 11986, + [SMALL_STATE(216)] = 12008, + [SMALL_STATE(217)] = 12030, + [SMALL_STATE(218)] = 12052, + [SMALL_STATE(219)] = 12074, + [SMALL_STATE(220)] = 12096, + [SMALL_STATE(221)] = 12118, + [SMALL_STATE(222)] = 12140, + [SMALL_STATE(223)] = 12162, + [SMALL_STATE(224)] = 12181, + [SMALL_STATE(225)] = 12200, + [SMALL_STATE(226)] = 12219, + [SMALL_STATE(227)] = 12238, + [SMALL_STATE(228)] = 12257, + [SMALL_STATE(229)] = 12276, + [SMALL_STATE(230)] = 12301, + [SMALL_STATE(231)] = 12320, + [SMALL_STATE(232)] = 12339, + [SMALL_STATE(233)] = 12358, + [SMALL_STATE(234)] = 12377, + [SMALL_STATE(235)] = 12396, + [SMALL_STATE(236)] = 12415, + [SMALL_STATE(237)] = 12434, + [SMALL_STATE(238)] = 12459, + [SMALL_STATE(239)] = 12484, + [SMALL_STATE(240)] = 12509, + [SMALL_STATE(241)] = 12528, + [SMALL_STATE(242)] = 12547, + [SMALL_STATE(243)] = 12566, + [SMALL_STATE(244)] = 12585, + [SMALL_STATE(245)] = 12604, + [SMALL_STATE(246)] = 12623, + [SMALL_STATE(247)] = 12642, + [SMALL_STATE(248)] = 12661, + [SMALL_STATE(249)] = 12686, + [SMALL_STATE(250)] = 12705, + [SMALL_STATE(251)] = 12724, + [SMALL_STATE(252)] = 12743, + [SMALL_STATE(253)] = 12762, + [SMALL_STATE(254)] = 12781, + [SMALL_STATE(255)] = 12800, + [SMALL_STATE(256)] = 12819, + [SMALL_STATE(257)] = 12838, + [SMALL_STATE(258)] = 12857, + [SMALL_STATE(259)] = 12876, + [SMALL_STATE(260)] = 12901, + [SMALL_STATE(261)] = 12926, + [SMALL_STATE(262)] = 12951, + [SMALL_STATE(263)] = 12976, + [SMALL_STATE(264)] = 12995, + [SMALL_STATE(265)] = 13020, + [SMALL_STATE(266)] = 13045, + [SMALL_STATE(267)] = 13064, + [SMALL_STATE(268)] = 13083, + [SMALL_STATE(269)] = 13108, + [SMALL_STATE(270)] = 13127, + [SMALL_STATE(271)] = 13152, + [SMALL_STATE(272)] = 13171, + [SMALL_STATE(273)] = 13190, + [SMALL_STATE(274)] = 13209, + [SMALL_STATE(275)] = 13228, + [SMALL_STATE(276)] = 13247, + [SMALL_STATE(277)] = 13266, + [SMALL_STATE(278)] = 13291, + [SMALL_STATE(279)] = 13310, + [SMALL_STATE(280)] = 13329, + [SMALL_STATE(281)] = 13348, + [SMALL_STATE(282)] = 13367, + [SMALL_STATE(283)] = 13386, + [SMALL_STATE(284)] = 13405, + [SMALL_STATE(285)] = 13424, + [SMALL_STATE(286)] = 13443, + [SMALL_STATE(287)] = 13462, + [SMALL_STATE(288)] = 13481, + [SMALL_STATE(289)] = 13500, + [SMALL_STATE(290)] = 13519, + [SMALL_STATE(291)] = 13538, + [SMALL_STATE(292)] = 13557, + [SMALL_STATE(293)] = 13574, + [SMALL_STATE(294)] = 13591, + [SMALL_STATE(295)] = 13608, + [SMALL_STATE(296)] = 13625, + [SMALL_STATE(297)] = 13642, + [SMALL_STATE(298)] = 13659, + [SMALL_STATE(299)] = 13676, + [SMALL_STATE(300)] = 13693, + [SMALL_STATE(301)] = 13710, + [SMALL_STATE(302)] = 13727, + [SMALL_STATE(303)] = 13744, + [SMALL_STATE(304)] = 13761, + [SMALL_STATE(305)] = 13778, + [SMALL_STATE(306)] = 13795, + [SMALL_STATE(307)] = 13812, + [SMALL_STATE(308)] = 13829, + [SMALL_STATE(309)] = 13846, + [SMALL_STATE(310)] = 13863, + [SMALL_STATE(311)] = 13880, + [SMALL_STATE(312)] = 13897, + [SMALL_STATE(313)] = 13914, + [SMALL_STATE(314)] = 13931, + [SMALL_STATE(315)] = 13948, + [SMALL_STATE(316)] = 13965, + [SMALL_STATE(317)] = 13982, + [SMALL_STATE(318)] = 13999, + [SMALL_STATE(319)] = 14016, + [SMALL_STATE(320)] = 14033, + [SMALL_STATE(321)] = 14050, + [SMALL_STATE(322)] = 14067, + [SMALL_STATE(323)] = 14084, + [SMALL_STATE(324)] = 14101, + [SMALL_STATE(325)] = 14118, + [SMALL_STATE(326)] = 14135, + [SMALL_STATE(327)] = 14152, + [SMALL_STATE(328)] = 14169, + [SMALL_STATE(329)] = 14186, + [SMALL_STATE(330)] = 14203, + [SMALL_STATE(331)] = 14220, + [SMALL_STATE(332)] = 14237, + [SMALL_STATE(333)] = 14254, + [SMALL_STATE(334)] = 14271, + [SMALL_STATE(335)] = 14288, + [SMALL_STATE(336)] = 14305, + [SMALL_STATE(337)] = 14322, + [SMALL_STATE(338)] = 14339, + [SMALL_STATE(339)] = 14356, + [SMALL_STATE(340)] = 14373, + [SMALL_STATE(341)] = 14390, + [SMALL_STATE(342)] = 14407, + [SMALL_STATE(343)] = 14424, + [SMALL_STATE(344)] = 14441, + [SMALL_STATE(345)] = 14458, + [SMALL_STATE(346)] = 14475, + [SMALL_STATE(347)] = 14492, + [SMALL_STATE(348)] = 14509, + [SMALL_STATE(349)] = 14526, + [SMALL_STATE(350)] = 14543, + [SMALL_STATE(351)] = 14560, + [SMALL_STATE(352)] = 14577, + [SMALL_STATE(353)] = 14594, + [SMALL_STATE(354)] = 14611, + [SMALL_STATE(355)] = 14628, + [SMALL_STATE(356)] = 14645, + [SMALL_STATE(357)] = 14662, + [SMALL_STATE(358)] = 14679, + [SMALL_STATE(359)] = 14696, + [SMALL_STATE(360)] = 14713, + [SMALL_STATE(361)] = 14730, + [SMALL_STATE(362)] = 14747, + [SMALL_STATE(363)] = 14764, + [SMALL_STATE(364)] = 14781, + [SMALL_STATE(365)] = 14798, + [SMALL_STATE(366)] = 14815, + [SMALL_STATE(367)] = 14832, + [SMALL_STATE(368)] = 14849, + [SMALL_STATE(369)] = 14866, + [SMALL_STATE(370)] = 14883, + [SMALL_STATE(371)] = 14900, + [SMALL_STATE(372)] = 14917, + [SMALL_STATE(373)] = 14934, + [SMALL_STATE(374)] = 14951, + [SMALL_STATE(375)] = 14968, + [SMALL_STATE(376)] = 14985, + [SMALL_STATE(377)] = 15002, + [SMALL_STATE(378)] = 15019, + [SMALL_STATE(379)] = 15036, + [SMALL_STATE(380)] = 15053, + [SMALL_STATE(381)] = 15070, + [SMALL_STATE(382)] = 15087, + [SMALL_STATE(383)] = 15104, + [SMALL_STATE(384)] = 15121, + [SMALL_STATE(385)] = 15138, + [SMALL_STATE(386)] = 15155, + [SMALL_STATE(387)] = 15172, + [SMALL_STATE(388)] = 15189, + [SMALL_STATE(389)] = 15206, + [SMALL_STATE(390)] = 15223, + [SMALL_STATE(391)] = 15240, + [SMALL_STATE(392)] = 15257, + [SMALL_STATE(393)] = 15274, + [SMALL_STATE(394)] = 15291, + [SMALL_STATE(395)] = 15308, + [SMALL_STATE(396)] = 15325, + [SMALL_STATE(397)] = 15342, + [SMALL_STATE(398)] = 15359, + [SMALL_STATE(399)] = 15376, + [SMALL_STATE(400)] = 15393, + [SMALL_STATE(401)] = 15410, + [SMALL_STATE(402)] = 15427, + [SMALL_STATE(403)] = 15444, + [SMALL_STATE(404)] = 15461, + [SMALL_STATE(405)] = 15478, + [SMALL_STATE(406)] = 15495, + [SMALL_STATE(407)] = 15512, + [SMALL_STATE(408)] = 15529, + [SMALL_STATE(409)] = 15546, + [SMALL_STATE(410)] = 15563, + [SMALL_STATE(411)] = 15580, + [SMALL_STATE(412)] = 15597, + [SMALL_STATE(413)] = 15614, + [SMALL_STATE(414)] = 15631, + [SMALL_STATE(415)] = 15648, + [SMALL_STATE(416)] = 15665, + [SMALL_STATE(417)] = 15682, + [SMALL_STATE(418)] = 15699, + [SMALL_STATE(419)] = 15716, + [SMALL_STATE(420)] = 15733, + [SMALL_STATE(421)] = 15750, + [SMALL_STATE(422)] = 15767, + [SMALL_STATE(423)] = 15784, + [SMALL_STATE(424)] = 15801, + [SMALL_STATE(425)] = 15818, + [SMALL_STATE(426)] = 15835, + [SMALL_STATE(427)] = 15852, + [SMALL_STATE(428)] = 15869, + [SMALL_STATE(429)] = 15886, + [SMALL_STATE(430)] = 15903, + [SMALL_STATE(431)] = 15920, + [SMALL_STATE(432)] = 15937, + [SMALL_STATE(433)] = 15954, + [SMALL_STATE(434)] = 15971, + [SMALL_STATE(435)] = 15988, + [SMALL_STATE(436)] = 16005, + [SMALL_STATE(437)] = 16022, + [SMALL_STATE(438)] = 16039, + [SMALL_STATE(439)] = 16056, + [SMALL_STATE(440)] = 16073, + [SMALL_STATE(441)] = 16090, + [SMALL_STATE(442)] = 16107, + [SMALL_STATE(443)] = 16124, + [SMALL_STATE(444)] = 16141, + [SMALL_STATE(445)] = 16158, + [SMALL_STATE(446)] = 16175, + [SMALL_STATE(447)] = 16192, + [SMALL_STATE(448)] = 16209, + [SMALL_STATE(449)] = 16226, + [SMALL_STATE(450)] = 16243, + [SMALL_STATE(451)] = 16260, + [SMALL_STATE(452)] = 16277, + [SMALL_STATE(453)] = 16294, + [SMALL_STATE(454)] = 16311, + [SMALL_STATE(455)] = 16325, + [SMALL_STATE(456)] = 16339, + [SMALL_STATE(457)] = 16353, + [SMALL_STATE(458)] = 16367, + [SMALL_STATE(459)] = 16381, + [SMALL_STATE(460)] = 16395, + [SMALL_STATE(461)] = 16409, + [SMALL_STATE(462)] = 16423, + [SMALL_STATE(463)] = 16437, + [SMALL_STATE(464)] = 16451, + [SMALL_STATE(465)] = 16465, + [SMALL_STATE(466)] = 16479, + [SMALL_STATE(467)] = 16493, + [SMALL_STATE(468)] = 16507, + [SMALL_STATE(469)] = 16521, + [SMALL_STATE(470)] = 16535, + [SMALL_STATE(471)] = 16549, + [SMALL_STATE(472)] = 16563, + [SMALL_STATE(473)] = 16577, + [SMALL_STATE(474)] = 16591, + [SMALL_STATE(475)] = 16605, + [SMALL_STATE(476)] = 16619, + [SMALL_STATE(477)] = 16633, + [SMALL_STATE(478)] = 16647, + [SMALL_STATE(479)] = 16661, + [SMALL_STATE(480)] = 16675, + [SMALL_STATE(481)] = 16689, + [SMALL_STATE(482)] = 16703, + [SMALL_STATE(483)] = 16717, + [SMALL_STATE(484)] = 16731, + [SMALL_STATE(485)] = 16745, + [SMALL_STATE(486)] = 16759, + [SMALL_STATE(487)] = 16773, + [SMALL_STATE(488)] = 16787, + [SMALL_STATE(489)] = 16801, + [SMALL_STATE(490)] = 16815, + [SMALL_STATE(491)] = 16829, + [SMALL_STATE(492)] = 16843, + [SMALL_STATE(493)] = 16857, + [SMALL_STATE(494)] = 16871, + [SMALL_STATE(495)] = 16885, + [SMALL_STATE(496)] = 16899, + [SMALL_STATE(497)] = 16913, + [SMALL_STATE(498)] = 16927, + [SMALL_STATE(499)] = 16941, + [SMALL_STATE(500)] = 16955, + [SMALL_STATE(501)] = 16969, + [SMALL_STATE(502)] = 16983, + [SMALL_STATE(503)] = 16997, + [SMALL_STATE(504)] = 17011, + [SMALL_STATE(505)] = 17025, + [SMALL_STATE(506)] = 17039, + [SMALL_STATE(507)] = 17053, + [SMALL_STATE(508)] = 17067, + [SMALL_STATE(509)] = 17081, + [SMALL_STATE(510)] = 17095, + [SMALL_STATE(511)] = 17109, + [SMALL_STATE(512)] = 17123, + [SMALL_STATE(513)] = 17137, + [SMALL_STATE(514)] = 17151, + [SMALL_STATE(515)] = 17165, + [SMALL_STATE(516)] = 17179, + [SMALL_STATE(517)] = 17193, + [SMALL_STATE(518)] = 17207, + [SMALL_STATE(519)] = 17221, + [SMALL_STATE(520)] = 17235, + [SMALL_STATE(521)] = 17249, + [SMALL_STATE(522)] = 17263, + [SMALL_STATE(523)] = 17277, + [SMALL_STATE(524)] = 17291, + [SMALL_STATE(525)] = 17305, + [SMALL_STATE(526)] = 17319, + [SMALL_STATE(527)] = 17333, + [SMALL_STATE(528)] = 17347, + [SMALL_STATE(529)] = 17361, + [SMALL_STATE(530)] = 17375, + [SMALL_STATE(531)] = 17389, + [SMALL_STATE(532)] = 17403, + [SMALL_STATE(533)] = 17417, + [SMALL_STATE(534)] = 17431, + [SMALL_STATE(535)] = 17445, + [SMALL_STATE(536)] = 17459, + [SMALL_STATE(537)] = 17473, + [SMALL_STATE(538)] = 17487, + [SMALL_STATE(539)] = 17501, + [SMALL_STATE(540)] = 17515, + [SMALL_STATE(541)] = 17529, + [SMALL_STATE(542)] = 17543, + [SMALL_STATE(543)] = 17554, + [SMALL_STATE(544)] = 17565, + [SMALL_STATE(545)] = 17576, + [SMALL_STATE(546)] = 17587, + [SMALL_STATE(547)] = 17598, + [SMALL_STATE(548)] = 17609, + [SMALL_STATE(549)] = 17620, + [SMALL_STATE(550)] = 17631, + [SMALL_STATE(551)] = 17642, + [SMALL_STATE(552)] = 17653, + [SMALL_STATE(553)] = 17664, + [SMALL_STATE(554)] = 17675, + [SMALL_STATE(555)] = 17686, + [SMALL_STATE(556)] = 17697, + [SMALL_STATE(557)] = 17708, + [SMALL_STATE(558)] = 17719, + [SMALL_STATE(559)] = 17730, + [SMALL_STATE(560)] = 17741, + [SMALL_STATE(561)] = 17752, + [SMALL_STATE(562)] = 17763, + [SMALL_STATE(563)] = 17774, + [SMALL_STATE(564)] = 17785, + [SMALL_STATE(565)] = 17796, + [SMALL_STATE(566)] = 17807, + [SMALL_STATE(567)] = 17818, + [SMALL_STATE(568)] = 17829, + [SMALL_STATE(569)] = 17837, + [SMALL_STATE(570)] = 17845, + [SMALL_STATE(571)] = 17853, + [SMALL_STATE(572)] = 17861, + [SMALL_STATE(573)] = 17869, + [SMALL_STATE(574)] = 17877, + [SMALL_STATE(575)] = 17885, + [SMALL_STATE(576)] = 17893, + [SMALL_STATE(577)] = 17901, + [SMALL_STATE(578)] = 17909, + [SMALL_STATE(579)] = 17917, + [SMALL_STATE(580)] = 17925, + [SMALL_STATE(581)] = 17933, + [SMALL_STATE(582)] = 17941, + [SMALL_STATE(583)] = 17949, + [SMALL_STATE(584)] = 17957, + [SMALL_STATE(585)] = 17965, + [SMALL_STATE(586)] = 17973, + [SMALL_STATE(587)] = 17981, + [SMALL_STATE(588)] = 17989, + [SMALL_STATE(589)] = 17997, + [SMALL_STATE(590)] = 18005, + [SMALL_STATE(591)] = 18013, + [SMALL_STATE(592)] = 18021, + [SMALL_STATE(593)] = 18029, + [SMALL_STATE(594)] = 18037, + [SMALL_STATE(595)] = 18045, + [SMALL_STATE(596)] = 18053, + [SMALL_STATE(597)] = 18061, + [SMALL_STATE(598)] = 18069, + [SMALL_STATE(599)] = 18077, + [SMALL_STATE(600)] = 18085, + [SMALL_STATE(601)] = 18093, + [SMALL_STATE(602)] = 18101, + [SMALL_STATE(603)] = 18109, + [SMALL_STATE(604)] = 18117, + [SMALL_STATE(605)] = 18125, + [SMALL_STATE(606)] = 18133, + [SMALL_STATE(607)] = 18141, + [SMALL_STATE(608)] = 18149, + [SMALL_STATE(609)] = 18157, + [SMALL_STATE(610)] = 18165, + [SMALL_STATE(611)] = 18173, + [SMALL_STATE(612)] = 18181, + [SMALL_STATE(613)] = 18189, + [SMALL_STATE(614)] = 18197, + [SMALL_STATE(615)] = 18205, + [SMALL_STATE(616)] = 18213, + [SMALL_STATE(617)] = 18221, + [SMALL_STATE(618)] = 18229, + [SMALL_STATE(619)] = 18237, + [SMALL_STATE(620)] = 18245, + [SMALL_STATE(621)] = 18253, + [SMALL_STATE(622)] = 18261, + [SMALL_STATE(623)] = 18269, + [SMALL_STATE(624)] = 18277, + [SMALL_STATE(625)] = 18285, + [SMALL_STATE(626)] = 18293, + [SMALL_STATE(627)] = 18301, + [SMALL_STATE(628)] = 18309, + [SMALL_STATE(629)] = 18317, + [SMALL_STATE(630)] = 18325, + [SMALL_STATE(631)] = 18333, + [SMALL_STATE(632)] = 18341, + [SMALL_STATE(633)] = 18349, + [SMALL_STATE(634)] = 18357, + [SMALL_STATE(635)] = 18365, + [SMALL_STATE(636)] = 18373, + [SMALL_STATE(637)] = 18381, + [SMALL_STATE(638)] = 18389, + [SMALL_STATE(639)] = 18397, + [SMALL_STATE(640)] = 18405, + [SMALL_STATE(641)] = 18413, + [SMALL_STATE(642)] = 18421, + [SMALL_STATE(643)] = 18429, + [SMALL_STATE(644)] = 18437, + [SMALL_STATE(645)] = 18445, + [SMALL_STATE(646)] = 18453, + [SMALL_STATE(647)] = 18461, + [SMALL_STATE(648)] = 18469, + [SMALL_STATE(649)] = 18477, + [SMALL_STATE(650)] = 18485, + [SMALL_STATE(651)] = 18493, + [SMALL_STATE(652)] = 18501, + [SMALL_STATE(653)] = 18509, + [SMALL_STATE(654)] = 18517, + [SMALL_STATE(655)] = 18525, + [SMALL_STATE(656)] = 18533, + [SMALL_STATE(657)] = 18541, + [SMALL_STATE(658)] = 18549, + [SMALL_STATE(659)] = 18557, + [SMALL_STATE(660)] = 18565, + [SMALL_STATE(661)] = 18573, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -10875,358 +16964,708 @@ 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 = false}}, SHIFT(380), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(380), - [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(355), - [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(354), - [46] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(340), - [51] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(344), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(359), - [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(358), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(365), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(147), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(163), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(337), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(336), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(141), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(138), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(153), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(147), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(163), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(337), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(336), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(141), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(138), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(153), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(380), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(340), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(344), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(359), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(358), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(374), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(383), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(357), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(395), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(389), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(147), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(163), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(337), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(336), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(139), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(170), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(157), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(403), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(404), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(142), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(160), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(162), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(401), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(402), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(144), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_element, 1), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(270), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(154), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [666] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(14), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(534), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(468), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(469), + [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(457), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(458), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(459), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(460), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(540), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(222), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(248), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(611), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(627), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(101), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(206), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(205), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat2, 2), SHIFT_REPEAT(215), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(534), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(458), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(459), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(460), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(509), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(162), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(461), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(177), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(495), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(222), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(248), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(611), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(627), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(204), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(272), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(262), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(642), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(643), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(209), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(234), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(259), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(636), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(637), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(210), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(224), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(268), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(648), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(649), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(214), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 7), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 7), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(454), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(229), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 6), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 6), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 7), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 7), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 6), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 6), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(530), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1454] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), }; #ifdef __cplusplus