From bd57f88f2dc6fddbeefcb5b4399ad82034a0e763 Mon Sep 17 00:00:00 2001 From: Uy Ha Date: Sun, 27 Jun 2021 13:14:31 +0200 Subject: [PATCH] The parser now understands comments (line and bracket) --- corpus/comment.txt | 31 +- grammar.js | 6 +- src/grammar.json | 19 +- src/node-types.json | 19 +- src/parser.c | 24161 ++++++++++++++++++++---------------------- src/scanner.cc | 54 +- 6 files changed, 11353 insertions(+), 12937 deletions(-) diff --git a/corpus/comment.txt b/corpus/comment.txt index b3fe10c..7ac72d7 100644 --- a/corpus/comment.txt +++ b/corpus/comment.txt @@ -6,7 +6,7 @@ Bracket comment [comment] --- (source_file - (comment (bracket_argument)) + (bracket_comment) ) ========================================================== @@ -19,12 +19,37 @@ message(STATUS #[[Some comment]] "comment is next" #[[Some comment]]) (source_file (message_command (message) - (comment (bracket_argument)) + (bracket_comment) (argument (quoted_argument (quoted_element))) - (comment (bracket_argument)) + (bracket_comment) ) ) ====================== Line comment [comment] ====================== +# [[Some comment]] "comment is next" #[[Some comment]] + +--- + +(source_file + (line_comment) +) + +=================================== +Message with Line comment [comment] +=================================== +message(STATUS # Some line comment +message #Some other line comment +) + +--- + +(source_file + (message_command + (message) + (line_comment) + (argument (unquoted_argument)) + (line_comment) + ) +) diff --git a/grammar.js b/grammar.js index 664d318..1f0bf8c 100644 --- a/grammar.js +++ b/grammar.js @@ -79,8 +79,8 @@ message_args = [ module.exports = grammar({ name: "cmake", - externals: ($) => [$.bracket_argument, $.bracket_comment], - extras: ($) => [/[\s\n\r]/, $.comment], + externals: ($) => [$.bracket_argument, $.bracket_comment, $.line_comment], + extras: ($) => [/[\s\n\r]/, $.bracket_comment, $.line_comment], rules: { source_file: ($) => repeat($._command_invocation), @@ -141,8 +141,6 @@ module.exports = grammar({ $.message_command ), - comment: ($) => choice($.bracket_comment), - ...commandNames(...commands), identifier: (_) => /[A-Za-z_][A-Za-z0-9_]*/, integer: (_) => /[+-]*\d+/, diff --git a/src/grammar.json b/src/grammar.json index 7cc9f6b..b282bff 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1910,15 +1910,6 @@ } ] }, - "comment": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "bracket_comment" - } - ] - }, "if": { "type": "PATTERN", "value": "[iI][fF]" @@ -1987,7 +1978,11 @@ }, { "type": "SYMBOL", - "name": "comment" + "name": "bracket_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" } ], "conflicts": [], @@ -2000,6 +1995,10 @@ { "type": "SYMBOL", "name": "bracket_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" } ], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 280404c..9b86eee 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -37,21 +37,6 @@ ] } }, - { - "type": "comment", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "bracket_comment", - "named": true - } - ] - } - }, { "type": "else_command", "named": true, @@ -1062,6 +1047,10 @@ "type": "if", "named": true }, + { + "type": "line_comment", + "named": true + }, { "type": "macro", "named": true diff --git a/src/parser.c b/src/parser.c index 9d354c6..29b0653 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,12 +14,12 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 528 +#define STATE_COUNT 497 #define LARGE_STATE_COUNT 24 #define SYMBOL_COUNT 137 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 95 -#define EXTERNAL_TOKEN_COUNT 2 +#define TOKEN_COUNT 96 +#define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 #define PRODUCTION_ID_COUNT 1 @@ -119,39 +119,39 @@ enum { sym_identifier = 92, sym_bracket_argument = 93, sym_bracket_comment = 94, - sym_source_file = 95, - sym_escape_sequence = 96, - sym__escape_encoded = 97, - sym_variable = 98, - sym_variable_ref = 99, - sym_normal_var = 100, - sym_env_var = 101, - sym_cache_var = 102, - sym_argument = 103, - sym_quoted_argument = 104, - sym_quoted_element = 105, - sym_unquoted_argument = 106, - sym_if_command = 107, - sym_elseif_command = 108, - sym_else_command = 109, - sym_endif_command = 110, - sym_if_condition = 111, - sym_foreach_command = 112, - sym_endforeach_command = 113, - sym_foreach_loop = 114, - sym_while_command = 115, - sym_endwhile_command = 116, - sym_while_loop = 117, - sym_function_command = 118, - sym_endfunction_command = 119, - sym_function_def = 120, - sym_macro_command = 121, - sym_endmacro_command = 122, - sym_macro_def = 123, - sym_message_command = 124, - sym_normal_command = 125, - sym__command_invocation = 126, - sym_comment = 127, + sym_line_comment = 95, + sym_source_file = 96, + sym_escape_sequence = 97, + sym__escape_encoded = 98, + sym_variable = 99, + sym_variable_ref = 100, + sym_normal_var = 101, + sym_env_var = 102, + sym_cache_var = 103, + sym_argument = 104, + sym_quoted_argument = 105, + sym_quoted_element = 106, + sym_unquoted_argument = 107, + sym_if_command = 108, + sym_elseif_command = 109, + sym_else_command = 110, + sym_endif_command = 111, + sym_if_condition = 112, + sym_foreach_command = 113, + sym_endforeach_command = 114, + sym_foreach_loop = 115, + sym_while_command = 116, + sym_endwhile_command = 117, + sym_while_loop = 118, + sym_function_command = 119, + sym_endfunction_command = 120, + sym_function_def = 121, + sym_macro_command = 122, + sym_endmacro_command = 123, + sym_macro_def = 124, + sym_message_command = 125, + sym_normal_command = 126, + sym__command_invocation = 127, aux_sym_source_file_repeat1 = 128, aux_sym_variable_repeat1 = 129, aux_sym_quoted_element_repeat1 = 130, @@ -259,6 +259,7 @@ static const char * const ts_symbol_names[] = { [sym_identifier] = "identifier", [sym_bracket_argument] = "bracket_argument", [sym_bracket_comment] = "bracket_comment", + [sym_line_comment] = "line_comment", [sym_source_file] = "source_file", [sym_escape_sequence] = "escape_sequence", [sym__escape_encoded] = "_escape_encoded", @@ -291,7 +292,6 @@ static const char * const ts_symbol_names[] = { [sym_message_command] = "message_command", [sym_normal_command] = "normal_command", [sym__command_invocation] = "_command_invocation", - [sym_comment] = "comment", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_variable_repeat1] = "variable_repeat1", [aux_sym_quoted_element_repeat1] = "quoted_element_repeat1", @@ -399,6 +399,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier] = sym_identifier, [sym_bracket_argument] = sym_bracket_argument, [sym_bracket_comment] = sym_bracket_comment, + [sym_line_comment] = sym_line_comment, [sym_source_file] = sym_source_file, [sym_escape_sequence] = sym_escape_sequence, [sym__escape_encoded] = sym__escape_encoded, @@ -431,7 +432,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_message_command] = sym_message_command, [sym_normal_command] = sym_normal_command, [sym__command_invocation] = sym__command_invocation, - [sym_comment] = sym_comment, [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, @@ -824,6 +824,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, [sym_source_file] = { .visible = true, .named = true, @@ -952,10 +956,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_comment] = { - .visible = true, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2649,7 +2649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 408: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(437); + lookahead == 'd') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2658,7 +2658,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 409: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(462); + lookahead == 'd') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2676,7 +2676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 411: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(422); + lookahead == 'd') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2685,7 +2685,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 412: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(423); + lookahead == 'd') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2948,7 +2948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 441: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(408); + lookahead == 'n') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2957,7 +2957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 442: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(411); + lookahead == 'n') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -3190,9 +3190,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [29] = {.lex_state = 1, .external_lex_state = 1}, [30] = {.lex_state = 1, .external_lex_state = 1}, [31] = {.lex_state = 1, .external_lex_state = 1}, - [32] = {.lex_state = 1, .external_lex_state = 1}, - [33] = {.lex_state = 1, .external_lex_state = 1}, - [34] = {.lex_state = 1, .external_lex_state = 1}, + [32] = {.lex_state = 2, .external_lex_state = 1}, + [33] = {.lex_state = 2, .external_lex_state = 1}, + [34] = {.lex_state = 2, .external_lex_state = 1}, [35] = {.lex_state = 2, .external_lex_state = 1}, [36] = {.lex_state = 2, .external_lex_state = 1}, [37] = {.lex_state = 2, .external_lex_state = 1}, @@ -3205,12 +3205,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 2, .external_lex_state = 1}, [45] = {.lex_state = 2, .external_lex_state = 1}, [46] = {.lex_state = 2, .external_lex_state = 1}, - [47] = {.lex_state = 2, .external_lex_state = 1}, - [48] = {.lex_state = 2, .external_lex_state = 1}, - [49] = {.lex_state = 2, .external_lex_state = 1}, - [50] = {.lex_state = 3, .external_lex_state = 1}, - [51] = {.lex_state = 3, .external_lex_state = 1}, - [52] = {.lex_state = 3, .external_lex_state = 1}, + [47] = {.lex_state = 3, .external_lex_state = 1}, + [48] = {.lex_state = 3, .external_lex_state = 1}, + [49] = {.lex_state = 3, .external_lex_state = 1}, + [50] = {.lex_state = 267, .external_lex_state = 2}, + [51] = {.lex_state = 267, .external_lex_state = 2}, + [52] = {.lex_state = 267, .external_lex_state = 2}, [53] = {.lex_state = 267, .external_lex_state = 2}, [54] = {.lex_state = 267, .external_lex_state = 2}, [55] = {.lex_state = 267, .external_lex_state = 2}, @@ -3221,384 +3221,384 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 267, .external_lex_state = 2}, [61] = {.lex_state = 267, .external_lex_state = 2}, [62] = {.lex_state = 267, .external_lex_state = 2}, - [63] = {.lex_state = 267, .external_lex_state = 2}, - [64] = {.lex_state = 267, .external_lex_state = 2}, - [65] = {.lex_state = 267, .external_lex_state = 2}, + [63] = {.lex_state = 2, .external_lex_state = 1}, + [64] = {.lex_state = 2, .external_lex_state = 1}, + [65] = {.lex_state = 2, .external_lex_state = 1}, [66] = {.lex_state = 2, .external_lex_state = 1}, [67] = {.lex_state = 2, .external_lex_state = 1}, [68] = {.lex_state = 2, .external_lex_state = 1}, [69] = {.lex_state = 2, .external_lex_state = 1}, [70] = {.lex_state = 2, .external_lex_state = 1}, - [71] = {.lex_state = 2, .external_lex_state = 1}, - [72] = {.lex_state = 2, .external_lex_state = 1}, - [73] = {.lex_state = 2, .external_lex_state = 1}, - [74] = {.lex_state = 2, .external_lex_state = 1}, - [75] = {.lex_state = 2, .external_lex_state = 1}, - [76] = {.lex_state = 2, .external_lex_state = 1}, - [77] = {.lex_state = 3, .external_lex_state = 1}, - [78] = {.lex_state = 3, .external_lex_state = 1}, - [79] = {.lex_state = 268, .external_lex_state = 2}, - [80] = {.lex_state = 268, .external_lex_state = 2}, - [81] = {.lex_state = 4, .external_lex_state = 1}, + [71] = {.lex_state = 3, .external_lex_state = 1}, + [72] = {.lex_state = 3, .external_lex_state = 1}, + [73] = {.lex_state = 4, .external_lex_state = 1}, + [74] = {.lex_state = 4, .external_lex_state = 1}, + [75] = {.lex_state = 4, .external_lex_state = 1}, + [76] = {.lex_state = 268, .external_lex_state = 2}, + [77] = {.lex_state = 269, .external_lex_state = 2}, + [78] = {.lex_state = 4, .external_lex_state = 1}, + [79] = {.lex_state = 270, .external_lex_state = 2}, + [80] = {.lex_state = 4, .external_lex_state = 1}, + [81] = {.lex_state = 271, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 1}, - [83] = {.lex_state = 4, .external_lex_state = 1}, + [83] = {.lex_state = 269, .external_lex_state = 2}, [84] = {.lex_state = 268, .external_lex_state = 2}, [85] = {.lex_state = 4, .external_lex_state = 1}, - [86] = {.lex_state = 269, .external_lex_state = 2}, - [87] = {.lex_state = 270, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 1}, + [87] = {.lex_state = 4, .external_lex_state = 1}, [88] = {.lex_state = 4, .external_lex_state = 1}, - [89] = {.lex_state = 271, .external_lex_state = 2}, + [89] = {.lex_state = 270, .external_lex_state = 2}, [90] = {.lex_state = 4, .external_lex_state = 1}, - [91] = {.lex_state = 4, .external_lex_state = 1}, - [92] = {.lex_state = 4, .external_lex_state = 1}, - [93] = {.lex_state = 4, .external_lex_state = 1}, - [94] = {.lex_state = 268, .external_lex_state = 2}, - [95] = {.lex_state = 269, .external_lex_state = 2}, - [96] = {.lex_state = 270, .external_lex_state = 2}, - [97] = {.lex_state = 271, .external_lex_state = 2}, - [98] = {.lex_state = 4, .external_lex_state = 1}, + [91] = {.lex_state = 271, .external_lex_state = 2}, + [92] = {.lex_state = 269, .external_lex_state = 2}, + [93] = {.lex_state = 268, .external_lex_state = 2}, + [94] = {.lex_state = 269, .external_lex_state = 2}, + [95] = {.lex_state = 271, .external_lex_state = 2}, + [96] = {.lex_state = 268, .external_lex_state = 2}, + [97] = {.lex_state = 4, .external_lex_state = 1}, + [98] = {.lex_state = 271, .external_lex_state = 2}, [99] = {.lex_state = 4, .external_lex_state = 1}, [100] = {.lex_state = 4, .external_lex_state = 1}, [101] = {.lex_state = 4, .external_lex_state = 1}, [102] = {.lex_state = 4, .external_lex_state = 1}, - [103] = {.lex_state = 268, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 1}, [104] = {.lex_state = 4, .external_lex_state = 1}, [105] = {.lex_state = 4, .external_lex_state = 1}, - [106] = {.lex_state = 271, .external_lex_state = 2}, - [107] = {.lex_state = 270, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 1}, - [109] = {.lex_state = 269, .external_lex_state = 2}, - [110] = {.lex_state = 270, .external_lex_state = 2}, - [111] = {.lex_state = 271, .external_lex_state = 2}, + [106] = {.lex_state = 270, .external_lex_state = 2}, + [107] = {.lex_state = 4, .external_lex_state = 1}, + [108] = {.lex_state = 268, .external_lex_state = 2}, + [109] = {.lex_state = 270, .external_lex_state = 2}, + [110] = {.lex_state = 271, .external_lex_state = 2}, + [111] = {.lex_state = 269, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 1}, - [113] = {.lex_state = 4, .external_lex_state = 1}, - [114] = {.lex_state = 269, .external_lex_state = 2}, - [115] = {.lex_state = 268, .external_lex_state = 2}, - [116] = {.lex_state = 269, .external_lex_state = 2}, - [117] = {.lex_state = 270, .external_lex_state = 2}, + [113] = {.lex_state = 268, .external_lex_state = 2}, + [114] = {.lex_state = 4, .external_lex_state = 1}, + [115] = {.lex_state = 270, .external_lex_state = 2}, + [116] = {.lex_state = 4, .external_lex_state = 1}, + [117] = {.lex_state = 269, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 1}, - [119] = {.lex_state = 271, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 1}, - [121] = {.lex_state = 268, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 1}, - [123] = {.lex_state = 4, .external_lex_state = 1}, - [124] = {.lex_state = 4, .external_lex_state = 1}, - [125] = {.lex_state = 269, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 1}, - [127] = {.lex_state = 4, .external_lex_state = 1}, - [128] = {.lex_state = 4, .external_lex_state = 1}, - [129] = {.lex_state = 268, .external_lex_state = 2}, + [119] = {.lex_state = 268, .external_lex_state = 2}, + [120] = {.lex_state = 270, .external_lex_state = 2}, + [121] = {.lex_state = 271, .external_lex_state = 2}, + [122] = {.lex_state = 269, .external_lex_state = 2}, + [123] = {.lex_state = 268, .external_lex_state = 2}, + [124] = {.lex_state = 269, .external_lex_state = 2}, + [125] = {.lex_state = 271, .external_lex_state = 2}, + [126] = {.lex_state = 270, .external_lex_state = 2}, + [127] = {.lex_state = 271, .external_lex_state = 2}, + [128] = {.lex_state = 270, .external_lex_state = 2}, + [129] = {.lex_state = 269, .external_lex_state = 2}, [130] = {.lex_state = 4, .external_lex_state = 1}, [131] = {.lex_state = 4, .external_lex_state = 1}, - [132] = {.lex_state = 4, .external_lex_state = 1}, - [133] = {.lex_state = 4, .external_lex_state = 1}, + [132] = {.lex_state = 268, .external_lex_state = 2}, + [133] = {.lex_state = 268, .external_lex_state = 2}, [134] = {.lex_state = 269, .external_lex_state = 2}, [135] = {.lex_state = 4, .external_lex_state = 1}, [136] = {.lex_state = 271, .external_lex_state = 2}, - [137] = {.lex_state = 268, .external_lex_state = 2}, - [138] = {.lex_state = 269, .external_lex_state = 2}, - [139] = {.lex_state = 270, .external_lex_state = 2}, - [140] = {.lex_state = 271, .external_lex_state = 2}, - [141] = {.lex_state = 270, .external_lex_state = 2}, + [137] = {.lex_state = 270, .external_lex_state = 2}, + [138] = {.lex_state = 4, .external_lex_state = 1}, + [139] = {.lex_state = 4, .external_lex_state = 1}, + [140] = {.lex_state = 4, .external_lex_state = 1}, + [141] = {.lex_state = 4, .external_lex_state = 1}, [142] = {.lex_state = 4, .external_lex_state = 1}, - [143] = {.lex_state = 270, .external_lex_state = 2}, - [144] = {.lex_state = 269, .external_lex_state = 2}, + [143] = {.lex_state = 4, .external_lex_state = 1}, + [144] = {.lex_state = 4, .external_lex_state = 1}, [145] = {.lex_state = 4, .external_lex_state = 1}, [146] = {.lex_state = 4, .external_lex_state = 1}, - [147] = {.lex_state = 270, .external_lex_state = 2}, - [148] = {.lex_state = 271, .external_lex_state = 2}, + [147] = {.lex_state = 268, .external_lex_state = 2}, + [148] = {.lex_state = 269, .external_lex_state = 2}, [149] = {.lex_state = 271, .external_lex_state = 2}, - [150] = {.lex_state = 270, .external_lex_state = 2}, - [151] = {.lex_state = 268, .external_lex_state = 2}, - [152] = {.lex_state = 269, .external_lex_state = 2}, - [153] = {.lex_state = 270, .external_lex_state = 2}, - [154] = {.lex_state = 271, .external_lex_state = 2}, - [155] = {.lex_state = 271, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 1}, - [157] = {.lex_state = 270, .external_lex_state = 2}, - [158] = {.lex_state = 269, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 1}, + [150] = {.lex_state = 271, .external_lex_state = 2}, + [151] = {.lex_state = 4, .external_lex_state = 1}, + [152] = {.lex_state = 270, .external_lex_state = 2}, + [153] = {.lex_state = 4, .external_lex_state = 1}, + [154] = {.lex_state = 268, .external_lex_state = 2}, + [155] = {.lex_state = 269, .external_lex_state = 2}, + [156] = {.lex_state = 271, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 1}, + [158] = {.lex_state = 4, .external_lex_state = 1}, + [159] = {.lex_state = 270, .external_lex_state = 2}, [160] = {.lex_state = 4, .external_lex_state = 1}, - [161] = {.lex_state = 4, .external_lex_state = 1}, + [161] = {.lex_state = 270, .external_lex_state = 2}, [162] = {.lex_state = 268, .external_lex_state = 2}, - [163] = {.lex_state = 269, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 1}, - [165] = {.lex_state = 4, .external_lex_state = 1}, - [166] = {.lex_state = 268, .external_lex_state = 2}, - [167] = {.lex_state = 271, .external_lex_state = 2}, - [168] = {.lex_state = 4, .external_lex_state = 1}, + [163] = {.lex_state = 4, .external_lex_state = 1}, + [164] = {.lex_state = 269, .external_lex_state = 2}, + [165] = {.lex_state = 271, .external_lex_state = 2}, + [166] = {.lex_state = 4, .external_lex_state = 1}, + [167] = {.lex_state = 4, .external_lex_state = 1}, + [168] = {.lex_state = 272, .external_lex_state = 2}, [169] = {.lex_state = 4, .external_lex_state = 1}, [170] = {.lex_state = 4, .external_lex_state = 1}, - [171] = {.lex_state = 4, .external_lex_state = 1}, - [172] = {.lex_state = 269, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 1}, + [171] = {.lex_state = 272, .external_lex_state = 2}, + [172] = {.lex_state = 4, .external_lex_state = 1}, + [173] = {.lex_state = 270, .external_lex_state = 2}, [174] = {.lex_state = 4, .external_lex_state = 1}, - [175] = {.lex_state = 272, .external_lex_state = 2}, - [176] = {.lex_state = 271, .external_lex_state = 2}, - [177] = {.lex_state = 270, .external_lex_state = 2}, - [178] = {.lex_state = 272, .external_lex_state = 2}, - [179] = {.lex_state = 268, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 1}, - [181] = {.lex_state = 4, .external_lex_state = 1}, - [182] = {.lex_state = 5, .external_lex_state = 2}, - [183] = {.lex_state = 5, .external_lex_state = 2}, - [184] = {.lex_state = 5, .external_lex_state = 2}, + [175] = {.lex_state = 4, .external_lex_state = 1}, + [176] = {.lex_state = 5, .external_lex_state = 2}, + [177] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 2}, + [179] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, + [181] = {.lex_state = 3, .external_lex_state = 1}, + [182] = {.lex_state = 3, .external_lex_state = 1}, + [183] = {.lex_state = 3, .external_lex_state = 1}, + [184] = {.lex_state = 4, .external_lex_state = 2}, [185] = {.lex_state = 5, .external_lex_state = 2}, - [186] = {.lex_state = 5, .external_lex_state = 2}, + [186] = {.lex_state = 3, .external_lex_state = 1}, [187] = {.lex_state = 3, .external_lex_state = 1}, - [188] = {.lex_state = 3, .external_lex_state = 1}, - [189] = {.lex_state = 3, .external_lex_state = 1}, + [188] = {.lex_state = 4, .external_lex_state = 2}, + [189] = {.lex_state = 5, .external_lex_state = 2}, [190] = {.lex_state = 3, .external_lex_state = 1}, - [191] = {.lex_state = 4, .external_lex_state = 2}, - [192] = {.lex_state = 4, .external_lex_state = 2}, - [193] = {.lex_state = 5, .external_lex_state = 2}, - [194] = {.lex_state = 3, .external_lex_state = 1}, - [195] = {.lex_state = 3, .external_lex_state = 1}, - [196] = {.lex_state = 5, .external_lex_state = 2}, - [197] = {.lex_state = 3, .external_lex_state = 1}, - [198] = {.lex_state = 3, .external_lex_state = 1}, - [199] = {.lex_state = 3, .external_lex_state = 1}, - [200] = {.lex_state = 3, .external_lex_state = 1}, - [201] = {.lex_state = 3, .external_lex_state = 1}, - [202] = {.lex_state = 4, .external_lex_state = 1}, - [203] = {.lex_state = 4, .external_lex_state = 1}, - [204] = {.lex_state = 4, .external_lex_state = 1}, - [205] = {.lex_state = 4, .external_lex_state = 1}, - [206] = {.lex_state = 4, .external_lex_state = 1}, - [207] = {.lex_state = 4, .external_lex_state = 1}, - [208] = {.lex_state = 4, .external_lex_state = 1}, - [209] = {.lex_state = 4, .external_lex_state = 1}, - [210] = {.lex_state = 4, .external_lex_state = 1}, - [211] = {.lex_state = 4, .external_lex_state = 1}, - [212] = {.lex_state = 4, .external_lex_state = 1}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 2}, - [215] = {.lex_state = 6, .external_lex_state = 2}, + [191] = {.lex_state = 3, .external_lex_state = 1}, + [192] = {.lex_state = 3, .external_lex_state = 1}, + [193] = {.lex_state = 4, .external_lex_state = 1}, + [194] = {.lex_state = 4, .external_lex_state = 1}, + [195] = {.lex_state = 4, .external_lex_state = 1}, + [196] = {.lex_state = 4, .external_lex_state = 1}, + [197] = {.lex_state = 4, .external_lex_state = 1}, + [198] = {.lex_state = 4, .external_lex_state = 1}, + [199] = {.lex_state = 4, .external_lex_state = 1}, + [200] = {.lex_state = 4, .external_lex_state = 1}, + [201] = {.lex_state = 267, .external_lex_state = 2}, + [202] = {.lex_state = 267, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 2}, + [205] = {.lex_state = 267, .external_lex_state = 2}, + [206] = {.lex_state = 6, .external_lex_state = 2}, + [207] = {.lex_state = 6, .external_lex_state = 2}, + [208] = {.lex_state = 6, .external_lex_state = 2}, + [209] = {.lex_state = 267, .external_lex_state = 2}, + [210] = {.lex_state = 267, .external_lex_state = 2}, + [211] = {.lex_state = 6, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, + [213] = {.lex_state = 267, .external_lex_state = 2}, + [214] = {.lex_state = 6, .external_lex_state = 2}, + [215] = {.lex_state = 267, .external_lex_state = 2}, [216] = {.lex_state = 6, .external_lex_state = 2}, - [217] = {.lex_state = 6, .external_lex_state = 2}, - [218] = {.lex_state = 6, .external_lex_state = 2}, - [219] = {.lex_state = 6, .external_lex_state = 2}, + [217] = {.lex_state = 267, .external_lex_state = 2}, + [218] = {.lex_state = 267, .external_lex_state = 2}, + [219] = {.lex_state = 267, .external_lex_state = 2}, [220] = {.lex_state = 6, .external_lex_state = 2}, [221] = {.lex_state = 6, .external_lex_state = 2}, - [222] = {.lex_state = 6, .external_lex_state = 2}, - [223] = {.lex_state = 6, .external_lex_state = 2}, - [224] = {.lex_state = 6, .external_lex_state = 2}, - [225] = {.lex_state = 6, .external_lex_state = 2}, - [226] = {.lex_state = 6, .external_lex_state = 2}, - [227] = {.lex_state = 6, .external_lex_state = 2}, - [228] = {.lex_state = 6, .external_lex_state = 2}, + [222] = {.lex_state = 267, .external_lex_state = 2}, + [223] = {.lex_state = 267, .external_lex_state = 2}, + [224] = {.lex_state = 267, .external_lex_state = 2}, + [225] = {.lex_state = 267, .external_lex_state = 2}, + [226] = {.lex_state = 5, .external_lex_state = 2}, + [227] = {.lex_state = 267, .external_lex_state = 2}, + [228] = {.lex_state = 267, .external_lex_state = 2}, [229] = {.lex_state = 6, .external_lex_state = 2}, - [230] = {.lex_state = 267, .external_lex_state = 2}, - [231] = {.lex_state = 6, .external_lex_state = 2}, - [232] = {.lex_state = 267, .external_lex_state = 2}, - [233] = {.lex_state = 6, .external_lex_state = 2}, - [234] = {.lex_state = 6, .external_lex_state = 2}, + [230] = {.lex_state = 6, .external_lex_state = 2}, + [231] = {.lex_state = 267, .external_lex_state = 2}, + [232] = {.lex_state = 6, .external_lex_state = 2}, + [233] = {.lex_state = 267, .external_lex_state = 2}, + [234] = {.lex_state = 267, .external_lex_state = 2}, [235] = {.lex_state = 6, .external_lex_state = 2}, - [236] = {.lex_state = 5, .external_lex_state = 2}, - [237] = {.lex_state = 267, .external_lex_state = 2}, + [236] = {.lex_state = 267, .external_lex_state = 2}, + [237] = {.lex_state = 5, .external_lex_state = 2}, [238] = {.lex_state = 267, .external_lex_state = 2}, [239] = {.lex_state = 267, .external_lex_state = 2}, - [240] = {.lex_state = 6, .external_lex_state = 2}, + [240] = {.lex_state = 267, .external_lex_state = 2}, [241] = {.lex_state = 267, .external_lex_state = 2}, [242] = {.lex_state = 267, .external_lex_state = 2}, - [243] = {.lex_state = 267, .external_lex_state = 2}, + [243] = {.lex_state = 6, .external_lex_state = 2}, [244] = {.lex_state = 267, .external_lex_state = 2}, [245] = {.lex_state = 267, .external_lex_state = 2}, - [246] = {.lex_state = 267, .external_lex_state = 2}, + [246] = {.lex_state = 6, .external_lex_state = 2}, [247] = {.lex_state = 267, .external_lex_state = 2}, [248] = {.lex_state = 267, .external_lex_state = 2}, [249] = {.lex_state = 267, .external_lex_state = 2}, - [250] = {.lex_state = 267, .external_lex_state = 2}, - [251] = {.lex_state = 267, .external_lex_state = 2}, - [252] = {.lex_state = 267, .external_lex_state = 2}, - [253] = {.lex_state = 267, .external_lex_state = 2}, - [254] = {.lex_state = 267, .external_lex_state = 2}, - [255] = {.lex_state = 267, .external_lex_state = 2}, - [256] = {.lex_state = 267, .external_lex_state = 2}, - [257] = {.lex_state = 267, .external_lex_state = 2}, - [258] = {.lex_state = 267, .external_lex_state = 2}, - [259] = {.lex_state = 267, .external_lex_state = 2}, - [260] = {.lex_state = 267, .external_lex_state = 2}, - [261] = {.lex_state = 5, .external_lex_state = 2}, - [262] = {.lex_state = 5, .external_lex_state = 2}, - [263] = {.lex_state = 4, .external_lex_state = 2}, - [264] = {.lex_state = 4, .external_lex_state = 2}, - [265] = {.lex_state = 5, .external_lex_state = 2}, - [266] = {.lex_state = 267, .external_lex_state = 2}, - [267] = {.lex_state = 267, .external_lex_state = 2}, - [268] = {.lex_state = 4, .external_lex_state = 2}, - [269] = {.lex_state = 267, .external_lex_state = 2}, - [270] = {.lex_state = 267, .external_lex_state = 2}, - [271] = {.lex_state = 267, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 2}, - [273] = {.lex_state = 5, .external_lex_state = 2}, - [274] = {.lex_state = 267, .external_lex_state = 2}, - [275] = {.lex_state = 267, .external_lex_state = 2}, - [276] = {.lex_state = 4, .external_lex_state = 2}, - [277] = {.lex_state = 4, .external_lex_state = 2}, - [278] = {.lex_state = 4, .external_lex_state = 2}, - [279] = {.lex_state = 272, .external_lex_state = 2}, - [280] = {.lex_state = 269, .external_lex_state = 2}, + [250] = {.lex_state = 6, .external_lex_state = 2}, + [251] = {.lex_state = 6, .external_lex_state = 2}, + [252] = {.lex_state = 6, .external_lex_state = 2}, + [253] = {.lex_state = 4, .external_lex_state = 2}, + [254] = {.lex_state = 4, .external_lex_state = 2}, + [255] = {.lex_state = 5, .external_lex_state = 2}, + [256] = {.lex_state = 4, .external_lex_state = 2}, + [257] = {.lex_state = 4, .external_lex_state = 2}, + [258] = {.lex_state = 4, .external_lex_state = 2}, + [259] = {.lex_state = 5, .external_lex_state = 2}, + [260] = {.lex_state = 5, .external_lex_state = 2}, + [261] = {.lex_state = 271, .external_lex_state = 2}, + [262] = {.lex_state = 268, .external_lex_state = 2}, + [263] = {.lex_state = 268, .external_lex_state = 2}, + [264] = {.lex_state = 270, .external_lex_state = 2}, + [265] = {.lex_state = 270, .external_lex_state = 2}, + [266] = {.lex_state = 270, .external_lex_state = 2}, + [267] = {.lex_state = 270, .external_lex_state = 2}, + [268] = {.lex_state = 270, .external_lex_state = 2}, + [269] = {.lex_state = 271, .external_lex_state = 2}, + [270] = {.lex_state = 271, .external_lex_state = 2}, + [271] = {.lex_state = 270, .external_lex_state = 2}, + [272] = {.lex_state = 270, .external_lex_state = 2}, + [273] = {.lex_state = 270, .external_lex_state = 2}, + [274] = {.lex_state = 270, .external_lex_state = 2}, + [275] = {.lex_state = 270, .external_lex_state = 2}, + [276] = {.lex_state = 270, .external_lex_state = 2}, + [277] = {.lex_state = 270, .external_lex_state = 2}, + [278] = {.lex_state = 270, .external_lex_state = 2}, + [279] = {.lex_state = 270, .external_lex_state = 2}, + [280] = {.lex_state = 270, .external_lex_state = 2}, [281] = {.lex_state = 270, .external_lex_state = 2}, - [282] = {.lex_state = 269, .external_lex_state = 2}, - [283] = {.lex_state = 271, .external_lex_state = 2}, - [284] = {.lex_state = 271, .external_lex_state = 2}, - [285] = {.lex_state = 269, .external_lex_state = 2}, - [286] = {.lex_state = 269, .external_lex_state = 2}, - [287] = {.lex_state = 269, .external_lex_state = 2}, - [288] = {.lex_state = 269, .external_lex_state = 2}, - [289] = {.lex_state = 269, .external_lex_state = 2}, - [290] = {.lex_state = 269, .external_lex_state = 2}, - [291] = {.lex_state = 269, .external_lex_state = 2}, + [282] = {.lex_state = 270, .external_lex_state = 2}, + [283] = {.lex_state = 270, .external_lex_state = 2}, + [284] = {.lex_state = 270, .external_lex_state = 2}, + [285] = {.lex_state = 271, .external_lex_state = 2}, + [286] = {.lex_state = 270, .external_lex_state = 2}, + [287] = {.lex_state = 270, .external_lex_state = 2}, + [288] = {.lex_state = 270, .external_lex_state = 2}, + [289] = {.lex_state = 270, .external_lex_state = 2}, + [290] = {.lex_state = 270, .external_lex_state = 2}, + [291] = {.lex_state = 271, .external_lex_state = 2}, [292] = {.lex_state = 271, .external_lex_state = 2}, [293] = {.lex_state = 271, .external_lex_state = 2}, - [294] = {.lex_state = 269, .external_lex_state = 2}, - [295] = {.lex_state = 269, .external_lex_state = 2}, - [296] = {.lex_state = 269, .external_lex_state = 2}, - [297] = {.lex_state = 269, .external_lex_state = 2}, - [298] = {.lex_state = 269, .external_lex_state = 2}, - [299] = {.lex_state = 269, .external_lex_state = 2}, - [300] = {.lex_state = 269, .external_lex_state = 2}, + [294] = {.lex_state = 271, .external_lex_state = 2}, + [295] = {.lex_state = 271, .external_lex_state = 2}, + [296] = {.lex_state = 271, .external_lex_state = 2}, + [297] = {.lex_state = 271, .external_lex_state = 2}, + [298] = {.lex_state = 271, .external_lex_state = 2}, + [299] = {.lex_state = 271, .external_lex_state = 2}, + [300] = {.lex_state = 271, .external_lex_state = 2}, [301] = {.lex_state = 271, .external_lex_state = 2}, - [302] = {.lex_state = 269, .external_lex_state = 2}, - [303] = {.lex_state = 269, .external_lex_state = 2}, - [304] = {.lex_state = 269, .external_lex_state = 2}, - [305] = {.lex_state = 269, .external_lex_state = 2}, - [306] = {.lex_state = 269, .external_lex_state = 2}, - [307] = {.lex_state = 268, .external_lex_state = 2}, - [308] = {.lex_state = 268, .external_lex_state = 2}, - [309] = {.lex_state = 268, .external_lex_state = 2}, - [310] = {.lex_state = 268, .external_lex_state = 2}, - [311] = {.lex_state = 268, .external_lex_state = 2}, - [312] = {.lex_state = 268, .external_lex_state = 2}, - [313] = {.lex_state = 268, .external_lex_state = 2}, - [314] = {.lex_state = 268, .external_lex_state = 2}, + [302] = {.lex_state = 271, .external_lex_state = 2}, + [303] = {.lex_state = 271, .external_lex_state = 2}, + [304] = {.lex_state = 271, .external_lex_state = 2}, + [305] = {.lex_state = 271, .external_lex_state = 2}, + [306] = {.lex_state = 271, .external_lex_state = 2}, + [307] = {.lex_state = 272, .external_lex_state = 2}, + [308] = {.lex_state = 272, .external_lex_state = 2}, + [309] = {.lex_state = 271, .external_lex_state = 2}, + [310] = {.lex_state = 271, .external_lex_state = 2}, + [311] = {.lex_state = 271, .external_lex_state = 2}, + [312] = {.lex_state = 272, .external_lex_state = 2}, + [313] = {.lex_state = 272, .external_lex_state = 2}, + [314] = {.lex_state = 272, .external_lex_state = 2}, [315] = {.lex_state = 268, .external_lex_state = 2}, - [316] = {.lex_state = 268, .external_lex_state = 2}, - [317] = {.lex_state = 268, .external_lex_state = 2}, - [318] = {.lex_state = 268, .external_lex_state = 2}, - [319] = {.lex_state = 268, .external_lex_state = 2}, - [320] = {.lex_state = 268, .external_lex_state = 2}, - [321] = {.lex_state = 268, .external_lex_state = 2}, - [322] = {.lex_state = 268, .external_lex_state = 2}, - [323] = {.lex_state = 268, .external_lex_state = 2}, - [324] = {.lex_state = 268, .external_lex_state = 2}, - [325] = {.lex_state = 268, .external_lex_state = 2}, - [326] = {.lex_state = 268, .external_lex_state = 2}, - [327] = {.lex_state = 268, .external_lex_state = 2}, - [328] = {.lex_state = 268, .external_lex_state = 2}, - [329] = {.lex_state = 268, .external_lex_state = 2}, - [330] = {.lex_state = 268, .external_lex_state = 2}, - [331] = {.lex_state = 268, .external_lex_state = 2}, - [332] = {.lex_state = 271, .external_lex_state = 2}, - [333] = {.lex_state = 271, .external_lex_state = 2}, - [334] = {.lex_state = 271, .external_lex_state = 2}, - [335] = {.lex_state = 271, .external_lex_state = 2}, - [336] = {.lex_state = 271, .external_lex_state = 2}, - [337] = {.lex_state = 271, .external_lex_state = 2}, - [338] = {.lex_state = 271, .external_lex_state = 2}, - [339] = {.lex_state = 271, .external_lex_state = 2}, - [340] = {.lex_state = 270, .external_lex_state = 2}, - [341] = {.lex_state = 271, .external_lex_state = 2}, - [342] = {.lex_state = 272, .external_lex_state = 2}, - [343] = {.lex_state = 270, .external_lex_state = 2}, - [344] = {.lex_state = 269, .external_lex_state = 2}, - [345] = {.lex_state = 271, .external_lex_state = 2}, - [346] = {.lex_state = 271, .external_lex_state = 2}, - [347] = {.lex_state = 271, .external_lex_state = 2}, - [348] = {.lex_state = 271, .external_lex_state = 2}, - [349] = {.lex_state = 271, .external_lex_state = 2}, - [350] = {.lex_state = 271, .external_lex_state = 2}, + [316] = {.lex_state = 269, .external_lex_state = 2}, + [317] = {.lex_state = 271, .external_lex_state = 2}, + [318] = {.lex_state = 270, .external_lex_state = 2}, + [319] = {.lex_state = 269, .external_lex_state = 2}, + [320] = {.lex_state = 269, .external_lex_state = 2}, + [321] = {.lex_state = 272, .external_lex_state = 2}, + [322] = {.lex_state = 272, .external_lex_state = 2}, + [323] = {.lex_state = 269, .external_lex_state = 2}, + [324] = {.lex_state = 269, .external_lex_state = 2}, + [325] = {.lex_state = 269, .external_lex_state = 2}, + [326] = {.lex_state = 269, .external_lex_state = 2}, + [327] = {.lex_state = 269, .external_lex_state = 2}, + [328] = {.lex_state = 269, .external_lex_state = 2}, + [329] = {.lex_state = 269, .external_lex_state = 2}, + [330] = {.lex_state = 269, .external_lex_state = 2}, + [331] = {.lex_state = 269, .external_lex_state = 2}, + [332] = {.lex_state = 269, .external_lex_state = 2}, + [333] = {.lex_state = 269, .external_lex_state = 2}, + [334] = {.lex_state = 269, .external_lex_state = 2}, + [335] = {.lex_state = 269, .external_lex_state = 2}, + [336] = {.lex_state = 269, .external_lex_state = 2}, + [337] = {.lex_state = 269, .external_lex_state = 2}, + [338] = {.lex_state = 269, .external_lex_state = 2}, + [339] = {.lex_state = 269, .external_lex_state = 2}, + [340] = {.lex_state = 269, .external_lex_state = 2}, + [341] = {.lex_state = 269, .external_lex_state = 2}, + [342] = {.lex_state = 269, .external_lex_state = 2}, + [343] = {.lex_state = 272, .external_lex_state = 2}, + [344] = {.lex_state = 272, .external_lex_state = 2}, + [345] = {.lex_state = 272, .external_lex_state = 2}, + [346] = {.lex_state = 272, .external_lex_state = 2}, + [347] = {.lex_state = 272, .external_lex_state = 2}, + [348] = {.lex_state = 269, .external_lex_state = 2}, + [349] = {.lex_state = 269, .external_lex_state = 2}, + [350] = {.lex_state = 268, .external_lex_state = 2}, [351] = {.lex_state = 269, .external_lex_state = 2}, - [352] = {.lex_state = 271, .external_lex_state = 2}, - [353] = {.lex_state = 271, .external_lex_state = 2}, - [354] = {.lex_state = 269, .external_lex_state = 2}, - [355] = {.lex_state = 269, .external_lex_state = 2}, + [352] = {.lex_state = 268, .external_lex_state = 2}, + [353] = {.lex_state = 268, .external_lex_state = 2}, + [354] = {.lex_state = 268, .external_lex_state = 2}, + [355] = {.lex_state = 268, .external_lex_state = 2}, [356] = {.lex_state = 268, .external_lex_state = 2}, - [357] = {.lex_state = 269, .external_lex_state = 2}, - [358] = {.lex_state = 270, .external_lex_state = 2}, - [359] = {.lex_state = 270, .external_lex_state = 2}, - [360] = {.lex_state = 270, .external_lex_state = 2}, - [361] = {.lex_state = 270, .external_lex_state = 2}, - [362] = {.lex_state = 270, .external_lex_state = 2}, - [363] = {.lex_state = 270, .external_lex_state = 2}, - [364] = {.lex_state = 270, .external_lex_state = 2}, - [365] = {.lex_state = 270, .external_lex_state = 2}, - [366] = {.lex_state = 271, .external_lex_state = 2}, - [367] = {.lex_state = 270, .external_lex_state = 2}, - [368] = {.lex_state = 272, .external_lex_state = 2}, - [369] = {.lex_state = 272, .external_lex_state = 2}, - [370] = {.lex_state = 271, .external_lex_state = 2}, - [371] = {.lex_state = 271, .external_lex_state = 2}, - [372] = {.lex_state = 272, .external_lex_state = 2}, + [357] = {.lex_state = 268, .external_lex_state = 2}, + [358] = {.lex_state = 268, .external_lex_state = 2}, + [359] = {.lex_state = 268, .external_lex_state = 2}, + [360] = {.lex_state = 268, .external_lex_state = 2}, + [361] = {.lex_state = 268, .external_lex_state = 2}, + [362] = {.lex_state = 268, .external_lex_state = 2}, + [363] = {.lex_state = 268, .external_lex_state = 2}, + [364] = {.lex_state = 268, .external_lex_state = 2}, + [365] = {.lex_state = 268, .external_lex_state = 2}, + [366] = {.lex_state = 268, .external_lex_state = 2}, + [367] = {.lex_state = 268, .external_lex_state = 2}, + [368] = {.lex_state = 268, .external_lex_state = 2}, + [369] = {.lex_state = 268, .external_lex_state = 2}, + [370] = {.lex_state = 268, .external_lex_state = 2}, + [371] = {.lex_state = 268, .external_lex_state = 2}, + [372] = {.lex_state = 271, .external_lex_state = 2}, [373] = {.lex_state = 270, .external_lex_state = 2}, - [374] = {.lex_state = 271, .external_lex_state = 2}, - [375] = {.lex_state = 270, .external_lex_state = 2}, - [376] = {.lex_state = 269, .external_lex_state = 2}, - [377] = {.lex_state = 270, .external_lex_state = 2}, - [378] = {.lex_state = 270, .external_lex_state = 2}, - [379] = {.lex_state = 270, .external_lex_state = 2}, + [374] = {.lex_state = 272, .external_lex_state = 2}, + [375] = {.lex_state = 272, .external_lex_state = 2}, + [376] = {.lex_state = 272, .external_lex_state = 2}, + [377] = {.lex_state = 268, .external_lex_state = 2}, + [378] = {.lex_state = 271, .external_lex_state = 2}, + [379] = {.lex_state = 272, .external_lex_state = 2}, [380] = {.lex_state = 272, .external_lex_state = 2}, - [381] = {.lex_state = 272, .external_lex_state = 2}, - [382] = {.lex_state = 270, .external_lex_state = 2}, + [381] = {.lex_state = 268, .external_lex_state = 2}, + [382] = {.lex_state = 272, .external_lex_state = 2}, [383] = {.lex_state = 272, .external_lex_state = 2}, - [384] = {.lex_state = 270, .external_lex_state = 2}, + [384] = {.lex_state = 272, .external_lex_state = 2}, [385] = {.lex_state = 272, .external_lex_state = 2}, [386] = {.lex_state = 272, .external_lex_state = 2}, [387] = {.lex_state = 272, .external_lex_state = 2}, [388] = {.lex_state = 272, .external_lex_state = 2}, - [389] = {.lex_state = 272, .external_lex_state = 2}, + [389] = {.lex_state = 6, .external_lex_state = 2}, [390] = {.lex_state = 272, .external_lex_state = 2}, [391] = {.lex_state = 272, .external_lex_state = 2}, - [392] = {.lex_state = 272, .external_lex_state = 2}, - [393] = {.lex_state = 271, .external_lex_state = 2}, - [394] = {.lex_state = 272, .external_lex_state = 2}, - [395] = {.lex_state = 270, .external_lex_state = 2}, + [392] = {.lex_state = 0, .external_lex_state = 2}, + [393] = {.lex_state = 272, .external_lex_state = 2}, + [394] = {.lex_state = 0, .external_lex_state = 2}, + [395] = {.lex_state = 0, .external_lex_state = 2}, [396] = {.lex_state = 272, .external_lex_state = 2}, - [397] = {.lex_state = 272, .external_lex_state = 2}, - [398] = {.lex_state = 268, .external_lex_state = 2}, - [399] = {.lex_state = 269, .external_lex_state = 2}, - [400] = {.lex_state = 270, .external_lex_state = 2}, - [401] = {.lex_state = 271, .external_lex_state = 2}, - [402] = {.lex_state = 270, .external_lex_state = 2}, - [403] = {.lex_state = 270, .external_lex_state = 2}, - [404] = {.lex_state = 270, .external_lex_state = 2}, - [405] = {.lex_state = 270, .external_lex_state = 2}, - [406] = {.lex_state = 270, .external_lex_state = 2}, - [407] = {.lex_state = 270, .external_lex_state = 2}, - [408] = {.lex_state = 270, .external_lex_state = 2}, - [409] = {.lex_state = 268, .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 = 0, .external_lex_state = 2}, + [402] = {.lex_state = 272, .external_lex_state = 2}, + [403] = {.lex_state = 0, .external_lex_state = 2}, + [404] = {.lex_state = 0, .external_lex_state = 2}, + [405] = {.lex_state = 0, .external_lex_state = 2}, + [406] = {.lex_state = 0, .external_lex_state = 2}, + [407] = {.lex_state = 0, .external_lex_state = 2}, + [408] = {.lex_state = 272, .external_lex_state = 2}, + [409] = {.lex_state = 272, .external_lex_state = 2}, [410] = {.lex_state = 272, .external_lex_state = 2}, [411] = {.lex_state = 272, .external_lex_state = 2}, [412] = {.lex_state = 272, .external_lex_state = 2}, - [413] = {.lex_state = 272, .external_lex_state = 2}, + [413] = {.lex_state = 0, .external_lex_state = 2}, [414] = {.lex_state = 272, .external_lex_state = 2}, - [415] = {.lex_state = 272, .external_lex_state = 2}, - [416] = {.lex_state = 272, .external_lex_state = 2}, - [417] = {.lex_state = 6, .external_lex_state = 2}, - [418] = {.lex_state = 6, .external_lex_state = 2}, - [419] = {.lex_state = 6, .external_lex_state = 2}, - [420] = {.lex_state = 0, .external_lex_state = 2}, - [421] = {.lex_state = 0, .external_lex_state = 2}, - [422] = {.lex_state = 272, .external_lex_state = 2}, + [415] = {.lex_state = 0, .external_lex_state = 2}, + [416] = {.lex_state = 0, .external_lex_state = 2}, + [417] = {.lex_state = 0, .external_lex_state = 2}, + [418] = {.lex_state = 0, .external_lex_state = 2}, + [419] = {.lex_state = 272, .external_lex_state = 2}, + [420] = {.lex_state = 272, .external_lex_state = 2}, + [421] = {.lex_state = 272, .external_lex_state = 2}, + [422] = {.lex_state = 0, .external_lex_state = 2}, [423] = {.lex_state = 0, .external_lex_state = 2}, - [424] = {.lex_state = 272, .external_lex_state = 2}, - [425] = {.lex_state = 272, .external_lex_state = 2}, - [426] = {.lex_state = 0, .external_lex_state = 2}, - [427] = {.lex_state = 0, .external_lex_state = 2}, - [428] = {.lex_state = 0, .external_lex_state = 2}, - [429] = {.lex_state = 272, .external_lex_state = 2}, + [424] = {.lex_state = 0, .external_lex_state = 2}, + [425] = {.lex_state = 0, .external_lex_state = 2}, + [426] = {.lex_state = 272, .external_lex_state = 2}, + [427] = {.lex_state = 272, .external_lex_state = 2}, + [428] = {.lex_state = 272, .external_lex_state = 2}, + [429] = {.lex_state = 0, .external_lex_state = 2}, [430] = {.lex_state = 272, .external_lex_state = 2}, [431] = {.lex_state = 0, .external_lex_state = 2}, - [432] = {.lex_state = 272, .external_lex_state = 2}, + [432] = {.lex_state = 0, .external_lex_state = 2}, [433] = {.lex_state = 0, .external_lex_state = 2}, [434] = {.lex_state = 0, .external_lex_state = 2}, [435] = {.lex_state = 0, .external_lex_state = 2}, - [436] = {.lex_state = 0, .external_lex_state = 2}, + [436] = {.lex_state = 272, .external_lex_state = 2}, [437] = {.lex_state = 272, .external_lex_state = 2}, [438] = {.lex_state = 0, .external_lex_state = 2}, - [439] = {.lex_state = 272, .external_lex_state = 2}, - [440] = {.lex_state = 272, .external_lex_state = 2}, + [439] = {.lex_state = 0, .external_lex_state = 2}, + [440] = {.lex_state = 0, .external_lex_state = 2}, [441] = {.lex_state = 0, .external_lex_state = 2}, [442] = {.lex_state = 0, .external_lex_state = 2}, [443] = {.lex_state = 0, .external_lex_state = 2}, @@ -3606,26 +3606,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 0, .external_lex_state = 2}, [446] = {.lex_state = 0, .external_lex_state = 2}, [447] = {.lex_state = 0, .external_lex_state = 2}, - [448] = {.lex_state = 272, .external_lex_state = 2}, + [448] = {.lex_state = 0, .external_lex_state = 2}, [449] = {.lex_state = 0, .external_lex_state = 2}, [450] = {.lex_state = 0, .external_lex_state = 2}, [451] = {.lex_state = 0, .external_lex_state = 2}, - [452] = {.lex_state = 272, .external_lex_state = 2}, - [453] = {.lex_state = 272, .external_lex_state = 2}, + [452] = {.lex_state = 0, .external_lex_state = 2}, + [453] = {.lex_state = 0, .external_lex_state = 2}, [454] = {.lex_state = 0, .external_lex_state = 2}, [455] = {.lex_state = 0, .external_lex_state = 2}, [456] = {.lex_state = 0, .external_lex_state = 2}, [457] = {.lex_state = 0, .external_lex_state = 2}, [458] = {.lex_state = 0, .external_lex_state = 2}, [459] = {.lex_state = 0, .external_lex_state = 2}, - [460] = {.lex_state = 272, .external_lex_state = 2}, + [460] = {.lex_state = 0, .external_lex_state = 2}, [461] = {.lex_state = 0, .external_lex_state = 2}, [462] = {.lex_state = 0, .external_lex_state = 2}, [463] = {.lex_state = 0, .external_lex_state = 2}, [464] = {.lex_state = 0, .external_lex_state = 2}, [465] = {.lex_state = 0, .external_lex_state = 2}, - [466] = {.lex_state = 272, .external_lex_state = 2}, - [467] = {.lex_state = 272, .external_lex_state = 2}, + [466] = {.lex_state = 0, .external_lex_state = 2}, + [467] = {.lex_state = 0, .external_lex_state = 2}, [468] = {.lex_state = 0, .external_lex_state = 2}, [469] = {.lex_state = 0, .external_lex_state = 2}, [470] = {.lex_state = 0, .external_lex_state = 2}, @@ -3633,7 +3633,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [472] = {.lex_state = 0, .external_lex_state = 2}, [473] = {.lex_state = 0, .external_lex_state = 2}, [474] = {.lex_state = 0, .external_lex_state = 2}, - [475] = {.lex_state = 272, .external_lex_state = 2}, + [475] = {.lex_state = 0, .external_lex_state = 2}, [476] = {.lex_state = 0, .external_lex_state = 2}, [477] = {.lex_state = 0, .external_lex_state = 2}, [478] = {.lex_state = 0, .external_lex_state = 2}, @@ -3646,71 +3646,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 0, .external_lex_state = 2}, [486] = {.lex_state = 0, .external_lex_state = 2}, [487] = {.lex_state = 272, .external_lex_state = 2}, - [488] = {.lex_state = 0, .external_lex_state = 2}, - [489] = {.lex_state = 0, .external_lex_state = 2}, - [490] = {.lex_state = 0, .external_lex_state = 2}, - [491] = {.lex_state = 0, .external_lex_state = 2}, - [492] = {.lex_state = 0, .external_lex_state = 2}, - [493] = {.lex_state = 0, .external_lex_state = 2}, - [494] = {.lex_state = 0, .external_lex_state = 2}, + [488] = {.lex_state = 272, .external_lex_state = 2}, + [489] = {.lex_state = 272, .external_lex_state = 2}, + [490] = {.lex_state = 272, .external_lex_state = 2}, + [491] = {.lex_state = 272, .external_lex_state = 2}, + [492] = {.lex_state = 272, .external_lex_state = 2}, + [493] = {.lex_state = 272, .external_lex_state = 2}, + [494] = {.lex_state = 272, .external_lex_state = 2}, [495] = {.lex_state = 272, .external_lex_state = 2}, [496] = {.lex_state = 272, .external_lex_state = 2}, - [497] = {.lex_state = 0, .external_lex_state = 2}, - [498] = {.lex_state = 0, .external_lex_state = 2}, - [499] = {.lex_state = 0, .external_lex_state = 2}, - [500] = {.lex_state = 0, .external_lex_state = 2}, - [501] = {.lex_state = 0, .external_lex_state = 2}, - [502] = {.lex_state = 0, .external_lex_state = 2}, - [503] = {.lex_state = 0, .external_lex_state = 2}, - [504] = {.lex_state = 0, .external_lex_state = 2}, - [505] = {.lex_state = 0, .external_lex_state = 2}, - [506] = {.lex_state = 0, .external_lex_state = 2}, - [507] = {.lex_state = 0, .external_lex_state = 2}, - [508] = {.lex_state = 0, .external_lex_state = 2}, - [509] = {.lex_state = 0, .external_lex_state = 2}, - [510] = {.lex_state = 0, .external_lex_state = 2}, - [511] = {.lex_state = 0, .external_lex_state = 2}, - [512] = {.lex_state = 0, .external_lex_state = 2}, - [513] = {.lex_state = 0, .external_lex_state = 2}, - [514] = {.lex_state = 0, .external_lex_state = 2}, - [515] = {.lex_state = 272, .external_lex_state = 2}, - [516] = {.lex_state = 0, .external_lex_state = 2}, - [517] = {.lex_state = 272, .external_lex_state = 2}, - [518] = {.lex_state = 272, .external_lex_state = 2}, - [519] = {.lex_state = 272, .external_lex_state = 2}, - [520] = {.lex_state = 272, .external_lex_state = 2}, - [521] = {.lex_state = 272, .external_lex_state = 2}, - [522] = {.lex_state = 272, .external_lex_state = 2}, - [523] = {.lex_state = 272, .external_lex_state = 2}, - [524] = {.lex_state = 272, .external_lex_state = 2}, - [525] = {.lex_state = 272, .external_lex_state = 2}, - [526] = {.lex_state = 272, .external_lex_state = 2}, - [527] = {(TSStateId)(-1)}, }; enum { ts_external_token_bracket_argument = 0, ts_external_token_bracket_comment = 1, + ts_external_token_line_comment = 2, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_bracket_argument] = sym_bracket_argument, [ts_external_token_bracket_comment] = sym_bracket_comment, + [ts_external_token_line_comment] = sym_line_comment, }; static const bool ts_external_scanner_states[3][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_bracket_argument] = true, [ts_external_token_bracket_comment] = true, + [ts_external_token_line_comment] = true, }, [2] = { [ts_external_token_bracket_comment] = true, + [ts_external_token_line_comment] = true, }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym__escape_identity] = ACTIONS(1), [anon_sym_BSLASHt] = ACTIONS(1), @@ -3733,24 +3705,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1), [sym_bracket_argument] = ACTIONS(1), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(454), - [sym_if_command] = STATE(59), - [sym_if_condition] = STATE(380), - [sym_foreach_command] = STATE(106), - [sym_foreach_loop] = STATE(380), - [sym_while_command] = STATE(107), - [sym_while_loop] = STATE(380), - [sym_function_command] = STATE(114), - [sym_function_def] = STATE(380), - [sym_macro_command] = STATE(121), - [sym_macro_def] = STATE(380), - [sym_message_command] = STATE(380), - [sym_normal_command] = STATE(380), - [sym__command_invocation] = STATE(381), - [sym_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(178), + [sym_source_file] = STATE(466), + [sym_if_command] = STATE(60), + [sym_if_condition] = STATE(171), + [sym_foreach_command] = STATE(133), + [sym_foreach_loop] = STATE(171), + [sym_while_command] = STATE(77), + [sym_while_loop] = STATE(171), + [sym_function_command] = STATE(98), + [sym_function_def] = STATE(171), + [sym_macro_command] = STATE(115), + [sym_macro_def] = STATE(171), + [sym_message_command] = STATE(171), + [sym_normal_command] = STATE(171), + [sym__command_invocation] = STATE(171), + [aux_sym_source_file_repeat1] = STATE(171), [ts_builtin_sym_end] = ACTIONS(5), [sym_if] = ACTIONS(7), [sym_foreach] = ACTIONS(9), @@ -3760,1619 +3732,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_message] = ACTIONS(17), [sym_identifier] = ACTIONS(19), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [2] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), + [sym_argument] = STATE(6), [sym_quoted_argument] = STATE(31), [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(2), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(8), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(39), - [sym_bracket_argument] = ACTIONS(41), - [sym_bracket_comment] = ACTIONS(3), - }, - [3] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(3), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(2), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(43), - [sym_bracket_argument] = ACTIONS(41), - [sym_bracket_comment] = ACTIONS(3), - }, - [4] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(4), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(7), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(45), - [sym_bracket_argument] = ACTIONS(41), - [sym_bracket_comment] = ACTIONS(3), - }, - [5] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(5), [aux_sym_unquoted_argument_repeat1] = STATE(23), [aux_sym_if_command_repeat1] = STATE(6), [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(47), - [sym_bracket_argument] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(33), + [anon_sym_ON] = ACTIONS(33), + [anon_sym_YES] = ACTIONS(33), + [anon_sym_TRUE] = ACTIONS(33), + [anon_sym_Y] = ACTIONS(35), + [anon_sym_0] = ACTIONS(33), + [anon_sym_OFF] = ACTIONS(33), + [anon_sym_NO] = ACTIONS(35), + [anon_sym_FALSE] = ACTIONS(33), + [anon_sym_N] = ACTIONS(35), + [anon_sym_IGNORE] = ACTIONS(33), + [anon_sym_NOTFOUND] = ACTIONS(33), + [anon_sym_NOT] = ACTIONS(35), + [anon_sym_AND] = ACTIONS(33), + [anon_sym_OR] = ACTIONS(33), + [anon_sym_COMMAND] = ACTIONS(33), + [anon_sym_POLICY] = ACTIONS(33), + [anon_sym_TARGET] = ACTIONS(33), + [anon_sym_TEST] = ACTIONS(33), + [anon_sym_DEFINED] = ACTIONS(33), + [anon_sym_CACHE] = ACTIONS(33), + [anon_sym_ENV] = ACTIONS(33), + [anon_sym_IN_LIST] = ACTIONS(33), + [anon_sym_EXISTS] = ACTIONS(33), + [anon_sym_IS_NEWER_THAN] = ACTIONS(33), + [anon_sym_IS_DIRECTORY] = ACTIONS(33), + [anon_sym_IS_SYMLINK] = ACTIONS(33), + [anon_sym_IS_ABSOLUTE] = ACTIONS(33), + [anon_sym_MATCHES] = ACTIONS(33), + [anon_sym_LESS] = ACTIONS(35), + [anon_sym_GREATER] = ACTIONS(35), + [anon_sym_EQUAL] = ACTIONS(33), + [anon_sym_LESS_EQUAL] = ACTIONS(33), + [anon_sym_GREATER_EQUAL] = ACTIONS(33), + [anon_sym_STRLESS] = ACTIONS(35), + [anon_sym_STRGREATER] = ACTIONS(35), + [anon_sym_STREQUAL] = ACTIONS(33), + [anon_sym_STRLESS_EQUAL] = ACTIONS(33), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(33), + [anon_sym_VERSION_LESS] = ACTIONS(35), + [anon_sym_VERSION_GREATER] = ACTIONS(35), + [anon_sym_VERSION_EQUAL] = ACTIONS(33), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(33), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(37), + [sym_bracket_argument] = ACTIONS(39), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [3] = { + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), + [sym_normal_var] = STATE(29), + [sym_env_var] = STATE(29), + [sym_cache_var] = STATE(29), + [sym_argument] = STATE(4), + [sym_quoted_argument] = STATE(31), + [sym_unquoted_argument] = STATE(31), + [aux_sym_unquoted_argument_repeat1] = STATE(23), + [aux_sym_if_command_repeat1] = STATE(4), + [sym__escape_identity] = ACTIONS(21), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), + [sym__escape_semicolon] = ACTIONS(21), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(41), + [anon_sym_ON] = ACTIONS(41), + [anon_sym_YES] = ACTIONS(41), + [anon_sym_TRUE] = ACTIONS(41), + [anon_sym_Y] = ACTIONS(43), + [anon_sym_0] = ACTIONS(41), + [anon_sym_OFF] = ACTIONS(41), + [anon_sym_NO] = ACTIONS(43), + [anon_sym_FALSE] = ACTIONS(41), + [anon_sym_N] = ACTIONS(43), + [anon_sym_IGNORE] = ACTIONS(41), + [anon_sym_NOTFOUND] = ACTIONS(41), + [anon_sym_NOT] = ACTIONS(43), + [anon_sym_AND] = ACTIONS(41), + [anon_sym_OR] = ACTIONS(41), + [anon_sym_COMMAND] = ACTIONS(41), + [anon_sym_POLICY] = ACTIONS(41), + [anon_sym_TARGET] = ACTIONS(41), + [anon_sym_TEST] = ACTIONS(41), + [anon_sym_DEFINED] = ACTIONS(41), + [anon_sym_CACHE] = ACTIONS(41), + [anon_sym_ENV] = ACTIONS(41), + [anon_sym_IN_LIST] = ACTIONS(41), + [anon_sym_EXISTS] = ACTIONS(41), + [anon_sym_IS_NEWER_THAN] = ACTIONS(41), + [anon_sym_IS_DIRECTORY] = ACTIONS(41), + [anon_sym_IS_SYMLINK] = ACTIONS(41), + [anon_sym_IS_ABSOLUTE] = ACTIONS(41), + [anon_sym_MATCHES] = ACTIONS(41), + [anon_sym_LESS] = ACTIONS(43), + [anon_sym_GREATER] = ACTIONS(43), + [anon_sym_EQUAL] = ACTIONS(41), + [anon_sym_LESS_EQUAL] = ACTIONS(41), + [anon_sym_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_STRLESS] = ACTIONS(43), + [anon_sym_STRGREATER] = ACTIONS(43), + [anon_sym_STREQUAL] = ACTIONS(41), + [anon_sym_STRLESS_EQUAL] = ACTIONS(41), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS] = ACTIONS(43), + [anon_sym_VERSION_GREATER] = ACTIONS(43), + [anon_sym_VERSION_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(45), + [sym_bracket_argument] = ACTIONS(39), + [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [4] = { + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), + [sym_normal_var] = STATE(29), + [sym_env_var] = STATE(29), + [sym_cache_var] = STATE(29), + [sym_argument] = STATE(4), + [sym_quoted_argument] = STATE(31), + [sym_unquoted_argument] = STATE(31), + [aux_sym_unquoted_argument_repeat1] = STATE(23), + [aux_sym_if_command_repeat1] = STATE(4), + [sym__escape_identity] = ACTIONS(47), + [anon_sym_BSLASHt] = ACTIONS(47), + [anon_sym_BSLASHr] = ACTIONS(47), + [anon_sym_BSLASHn] = ACTIONS(47), + [sym__escape_semicolon] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(50), + [anon_sym_DOLLARENV] = ACTIONS(53), + [anon_sym_DOLLARCACHE] = ACTIONS(56), + [anon_sym_DQUOTE] = ACTIONS(59), + [aux_sym_unquoted_argument_token1] = ACTIONS(62), + [anon_sym_1] = ACTIONS(65), + [anon_sym_ON] = ACTIONS(65), + [anon_sym_YES] = ACTIONS(65), + [anon_sym_TRUE] = ACTIONS(65), + [anon_sym_Y] = ACTIONS(68), + [anon_sym_0] = ACTIONS(65), + [anon_sym_OFF] = ACTIONS(65), + [anon_sym_NO] = ACTIONS(68), + [anon_sym_FALSE] = ACTIONS(65), + [anon_sym_N] = ACTIONS(68), + [anon_sym_IGNORE] = ACTIONS(65), + [anon_sym_NOTFOUND] = ACTIONS(65), + [anon_sym_NOT] = ACTIONS(68), + [anon_sym_AND] = ACTIONS(65), + [anon_sym_OR] = ACTIONS(65), + [anon_sym_COMMAND] = ACTIONS(65), + [anon_sym_POLICY] = ACTIONS(65), + [anon_sym_TARGET] = ACTIONS(65), + [anon_sym_TEST] = ACTIONS(65), + [anon_sym_DEFINED] = ACTIONS(65), + [anon_sym_CACHE] = ACTIONS(65), + [anon_sym_ENV] = ACTIONS(65), + [anon_sym_IN_LIST] = ACTIONS(65), + [anon_sym_EXISTS] = ACTIONS(65), + [anon_sym_IS_NEWER_THAN] = ACTIONS(65), + [anon_sym_IS_DIRECTORY] = ACTIONS(65), + [anon_sym_IS_SYMLINK] = ACTIONS(65), + [anon_sym_IS_ABSOLUTE] = ACTIONS(65), + [anon_sym_MATCHES] = ACTIONS(65), + [anon_sym_LESS] = ACTIONS(68), + [anon_sym_GREATER] = ACTIONS(68), + [anon_sym_EQUAL] = ACTIONS(65), + [anon_sym_LESS_EQUAL] = ACTIONS(65), + [anon_sym_GREATER_EQUAL] = ACTIONS(65), + [anon_sym_STRLESS] = ACTIONS(68), + [anon_sym_STRGREATER] = ACTIONS(68), + [anon_sym_STREQUAL] = ACTIONS(65), + [anon_sym_STRLESS_EQUAL] = ACTIONS(65), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(65), + [anon_sym_VERSION_LESS] = ACTIONS(68), + [anon_sym_VERSION_GREATER] = ACTIONS(68), + [anon_sym_VERSION_EQUAL] = ACTIONS(65), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(65), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(71), + [sym_bracket_argument] = ACTIONS(73), + [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [5] = { + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), + [sym_normal_var] = STATE(29), + [sym_env_var] = STATE(29), + [sym_cache_var] = STATE(29), + [sym_argument] = STATE(3), + [sym_quoted_argument] = STATE(31), + [sym_unquoted_argument] = STATE(31), + [aux_sym_unquoted_argument_repeat1] = STATE(23), + [aux_sym_if_command_repeat1] = STATE(3), + [sym__escape_identity] = ACTIONS(21), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), + [sym__escape_semicolon] = ACTIONS(21), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(76), + [anon_sym_ON] = ACTIONS(76), + [anon_sym_YES] = ACTIONS(76), + [anon_sym_TRUE] = ACTIONS(76), + [anon_sym_Y] = ACTIONS(78), + [anon_sym_0] = ACTIONS(76), + [anon_sym_OFF] = ACTIONS(76), + [anon_sym_NO] = ACTIONS(78), + [anon_sym_FALSE] = ACTIONS(76), + [anon_sym_N] = ACTIONS(78), + [anon_sym_IGNORE] = ACTIONS(76), + [anon_sym_NOTFOUND] = ACTIONS(76), + [anon_sym_NOT] = ACTIONS(78), + [anon_sym_AND] = ACTIONS(76), + [anon_sym_OR] = ACTIONS(76), + [anon_sym_COMMAND] = ACTIONS(76), + [anon_sym_POLICY] = ACTIONS(76), + [anon_sym_TARGET] = ACTIONS(76), + [anon_sym_TEST] = ACTIONS(76), + [anon_sym_DEFINED] = ACTIONS(76), + [anon_sym_CACHE] = ACTIONS(76), + [anon_sym_ENV] = ACTIONS(76), + [anon_sym_IN_LIST] = ACTIONS(76), + [anon_sym_EXISTS] = ACTIONS(76), + [anon_sym_IS_NEWER_THAN] = ACTIONS(76), + [anon_sym_IS_DIRECTORY] = ACTIONS(76), + [anon_sym_IS_SYMLINK] = ACTIONS(76), + [anon_sym_IS_ABSOLUTE] = ACTIONS(76), + [anon_sym_MATCHES] = ACTIONS(76), + [anon_sym_LESS] = ACTIONS(78), + [anon_sym_GREATER] = ACTIONS(78), + [anon_sym_EQUAL] = ACTIONS(76), + [anon_sym_LESS_EQUAL] = ACTIONS(76), + [anon_sym_GREATER_EQUAL] = ACTIONS(76), + [anon_sym_STRLESS] = ACTIONS(78), + [anon_sym_STRGREATER] = ACTIONS(78), + [anon_sym_STREQUAL] = ACTIONS(76), + [anon_sym_STRLESS_EQUAL] = ACTIONS(76), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(76), + [anon_sym_VERSION_LESS] = ACTIONS(78), + [anon_sym_VERSION_GREATER] = ACTIONS(78), + [anon_sym_VERSION_EQUAL] = ACTIONS(76), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(76), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(76), + [anon_sym_RPAREN] = ACTIONS(80), + [sym_bracket_argument] = ACTIONS(39), + [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [6] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), + [sym_argument] = STATE(4), [sym_quoted_argument] = STATE(31), [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(6), [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(8), + [aux_sym_if_command_repeat1] = STATE(4), [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(49), - [sym_bracket_argument] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(41), + [anon_sym_ON] = ACTIONS(41), + [anon_sym_YES] = ACTIONS(41), + [anon_sym_TRUE] = ACTIONS(41), + [anon_sym_Y] = ACTIONS(43), + [anon_sym_0] = ACTIONS(41), + [anon_sym_OFF] = ACTIONS(41), + [anon_sym_NO] = ACTIONS(43), + [anon_sym_FALSE] = ACTIONS(41), + [anon_sym_N] = ACTIONS(43), + [anon_sym_IGNORE] = ACTIONS(41), + [anon_sym_NOTFOUND] = ACTIONS(41), + [anon_sym_NOT] = ACTIONS(43), + [anon_sym_AND] = ACTIONS(41), + [anon_sym_OR] = ACTIONS(41), + [anon_sym_COMMAND] = ACTIONS(41), + [anon_sym_POLICY] = ACTIONS(41), + [anon_sym_TARGET] = ACTIONS(41), + [anon_sym_TEST] = ACTIONS(41), + [anon_sym_DEFINED] = ACTIONS(41), + [anon_sym_CACHE] = ACTIONS(41), + [anon_sym_ENV] = ACTIONS(41), + [anon_sym_IN_LIST] = ACTIONS(41), + [anon_sym_EXISTS] = ACTIONS(41), + [anon_sym_IS_NEWER_THAN] = ACTIONS(41), + [anon_sym_IS_DIRECTORY] = ACTIONS(41), + [anon_sym_IS_SYMLINK] = ACTIONS(41), + [anon_sym_IS_ABSOLUTE] = ACTIONS(41), + [anon_sym_MATCHES] = ACTIONS(41), + [anon_sym_LESS] = ACTIONS(43), + [anon_sym_GREATER] = ACTIONS(43), + [anon_sym_EQUAL] = ACTIONS(41), + [anon_sym_LESS_EQUAL] = ACTIONS(41), + [anon_sym_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_STRLESS] = ACTIONS(43), + [anon_sym_STRGREATER] = ACTIONS(43), + [anon_sym_STREQUAL] = ACTIONS(41), + [anon_sym_STRLESS_EQUAL] = ACTIONS(41), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS] = ACTIONS(43), + [anon_sym_VERSION_GREATER] = ACTIONS(43), + [anon_sym_VERSION_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(82), + [sym_bracket_argument] = ACTIONS(39), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [7] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), + [sym_argument] = STATE(8), [sym_quoted_argument] = STATE(31), [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(7), [aux_sym_unquoted_argument_repeat1] = STATE(23), [aux_sym_if_command_repeat1] = STATE(8), [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(31), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(35), - [anon_sym_ON] = ACTIONS(35), - [anon_sym_YES] = ACTIONS(35), - [anon_sym_TRUE] = ACTIONS(35), - [anon_sym_Y] = ACTIONS(37), - [anon_sym_0] = ACTIONS(35), - [anon_sym_OFF] = ACTIONS(35), - [anon_sym_NO] = ACTIONS(37), - [anon_sym_FALSE] = ACTIONS(35), - [anon_sym_N] = ACTIONS(37), - [anon_sym_IGNORE] = ACTIONS(35), - [anon_sym_NOTFOUND] = ACTIONS(35), - [anon_sym_NOT] = ACTIONS(37), - [anon_sym_AND] = ACTIONS(35), - [anon_sym_OR] = ACTIONS(35), - [anon_sym_COMMAND] = ACTIONS(35), - [anon_sym_POLICY] = ACTIONS(35), - [anon_sym_TARGET] = ACTIONS(35), - [anon_sym_TEST] = ACTIONS(35), - [anon_sym_DEFINED] = ACTIONS(35), - [anon_sym_CACHE] = ACTIONS(35), - [anon_sym_ENV] = ACTIONS(35), - [anon_sym_IN_LIST] = ACTIONS(35), - [anon_sym_EXISTS] = ACTIONS(35), - [anon_sym_IS_NEWER_THAN] = ACTIONS(35), - [anon_sym_IS_DIRECTORY] = ACTIONS(35), - [anon_sym_IS_SYMLINK] = ACTIONS(35), - [anon_sym_IS_ABSOLUTE] = ACTIONS(35), - [anon_sym_MATCHES] = ACTIONS(35), - [anon_sym_LESS] = ACTIONS(37), - [anon_sym_GREATER] = ACTIONS(37), - [anon_sym_EQUAL] = ACTIONS(35), - [anon_sym_LESS_EQUAL] = ACTIONS(35), - [anon_sym_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_STRLESS] = ACTIONS(37), - [anon_sym_STRGREATER] = ACTIONS(37), - [anon_sym_STREQUAL] = ACTIONS(35), - [anon_sym_STRLESS_EQUAL] = ACTIONS(35), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS] = ACTIONS(37), - [anon_sym_VERSION_GREATER] = ACTIONS(37), - [anon_sym_VERSION_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(35), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(35), - [anon_sym_RPAREN] = ACTIONS(51), - [sym_bracket_argument] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(84), + [anon_sym_ON] = ACTIONS(84), + [anon_sym_YES] = ACTIONS(84), + [anon_sym_TRUE] = ACTIONS(84), + [anon_sym_Y] = ACTIONS(86), + [anon_sym_0] = ACTIONS(84), + [anon_sym_OFF] = ACTIONS(84), + [anon_sym_NO] = ACTIONS(86), + [anon_sym_FALSE] = ACTIONS(84), + [anon_sym_N] = ACTIONS(86), + [anon_sym_IGNORE] = ACTIONS(84), + [anon_sym_NOTFOUND] = ACTIONS(84), + [anon_sym_NOT] = ACTIONS(86), + [anon_sym_AND] = ACTIONS(84), + [anon_sym_OR] = ACTIONS(84), + [anon_sym_COMMAND] = ACTIONS(84), + [anon_sym_POLICY] = ACTIONS(84), + [anon_sym_TARGET] = ACTIONS(84), + [anon_sym_TEST] = ACTIONS(84), + [anon_sym_DEFINED] = ACTIONS(84), + [anon_sym_CACHE] = ACTIONS(84), + [anon_sym_ENV] = ACTIONS(84), + [anon_sym_IN_LIST] = ACTIONS(84), + [anon_sym_EXISTS] = ACTIONS(84), + [anon_sym_IS_NEWER_THAN] = ACTIONS(84), + [anon_sym_IS_DIRECTORY] = ACTIONS(84), + [anon_sym_IS_SYMLINK] = ACTIONS(84), + [anon_sym_IS_ABSOLUTE] = ACTIONS(84), + [anon_sym_MATCHES] = ACTIONS(84), + [anon_sym_LESS] = ACTIONS(86), + [anon_sym_GREATER] = ACTIONS(86), + [anon_sym_EQUAL] = ACTIONS(84), + [anon_sym_LESS_EQUAL] = ACTIONS(84), + [anon_sym_GREATER_EQUAL] = ACTIONS(84), + [anon_sym_STRLESS] = ACTIONS(86), + [anon_sym_STRGREATER] = ACTIONS(86), + [anon_sym_STREQUAL] = ACTIONS(84), + [anon_sym_STRLESS_EQUAL] = ACTIONS(84), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(84), + [anon_sym_VERSION_LESS] = ACTIONS(86), + [anon_sym_VERSION_GREATER] = ACTIONS(86), + [anon_sym_VERSION_EQUAL] = ACTIONS(84), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(84), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(88), + [sym_bracket_argument] = ACTIONS(39), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [8] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(23), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(23), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_argument] = STATE(24), + [sym_argument] = STATE(4), [sym_quoted_argument] = STATE(31), [sym_unquoted_argument] = STATE(31), - [sym_comment] = STATE(8), [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(8), - [sym__escape_identity] = ACTIONS(53), - [anon_sym_BSLASHt] = ACTIONS(56), - [anon_sym_BSLASHr] = ACTIONS(56), - [anon_sym_BSLASHn] = ACTIONS(56), - [sym__escape_semicolon] = ACTIONS(53), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), - [anon_sym_DOLLARENV] = ACTIONS(62), - [anon_sym_DOLLARCACHE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(68), - [aux_sym_unquoted_argument_token1] = ACTIONS(71), - [anon_sym_1] = ACTIONS(74), - [anon_sym_ON] = ACTIONS(74), - [anon_sym_YES] = ACTIONS(74), - [anon_sym_TRUE] = ACTIONS(74), - [anon_sym_Y] = ACTIONS(77), - [anon_sym_0] = ACTIONS(74), - [anon_sym_OFF] = ACTIONS(74), - [anon_sym_NO] = ACTIONS(77), - [anon_sym_FALSE] = ACTIONS(74), - [anon_sym_N] = ACTIONS(77), - [anon_sym_IGNORE] = ACTIONS(74), - [anon_sym_NOTFOUND] = ACTIONS(74), - [anon_sym_NOT] = ACTIONS(77), - [anon_sym_AND] = ACTIONS(74), - [anon_sym_OR] = ACTIONS(74), - [anon_sym_COMMAND] = ACTIONS(74), - [anon_sym_POLICY] = ACTIONS(74), - [anon_sym_TARGET] = ACTIONS(74), - [anon_sym_TEST] = ACTIONS(74), - [anon_sym_DEFINED] = ACTIONS(74), - [anon_sym_CACHE] = ACTIONS(74), - [anon_sym_ENV] = ACTIONS(74), - [anon_sym_IN_LIST] = ACTIONS(74), - [anon_sym_EXISTS] = ACTIONS(74), - [anon_sym_IS_NEWER_THAN] = ACTIONS(74), - [anon_sym_IS_DIRECTORY] = ACTIONS(74), - [anon_sym_IS_SYMLINK] = ACTIONS(74), - [anon_sym_IS_ABSOLUTE] = ACTIONS(74), - [anon_sym_MATCHES] = ACTIONS(74), - [anon_sym_LESS] = ACTIONS(77), - [anon_sym_GREATER] = ACTIONS(77), - [anon_sym_EQUAL] = ACTIONS(74), - [anon_sym_LESS_EQUAL] = ACTIONS(74), - [anon_sym_GREATER_EQUAL] = ACTIONS(74), - [anon_sym_STRLESS] = ACTIONS(77), - [anon_sym_STRGREATER] = ACTIONS(77), - [anon_sym_STREQUAL] = ACTIONS(74), - [anon_sym_STRLESS_EQUAL] = ACTIONS(74), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(74), - [anon_sym_VERSION_LESS] = ACTIONS(77), - [anon_sym_VERSION_GREATER] = ACTIONS(77), - [anon_sym_VERSION_EQUAL] = ACTIONS(74), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(74), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(74), - [anon_sym_RPAREN] = ACTIONS(80), - [sym_bracket_argument] = ACTIONS(82), + [aux_sym_if_command_repeat1] = STATE(4), + [sym__escape_identity] = ACTIONS(21), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), + [sym__escape_semicolon] = ACTIONS(21), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [aux_sym_unquoted_argument_token1] = ACTIONS(31), + [anon_sym_1] = ACTIONS(41), + [anon_sym_ON] = ACTIONS(41), + [anon_sym_YES] = ACTIONS(41), + [anon_sym_TRUE] = ACTIONS(41), + [anon_sym_Y] = ACTIONS(43), + [anon_sym_0] = ACTIONS(41), + [anon_sym_OFF] = ACTIONS(41), + [anon_sym_NO] = ACTIONS(43), + [anon_sym_FALSE] = ACTIONS(41), + [anon_sym_N] = ACTIONS(43), + [anon_sym_IGNORE] = ACTIONS(41), + [anon_sym_NOTFOUND] = ACTIONS(41), + [anon_sym_NOT] = ACTIONS(43), + [anon_sym_AND] = ACTIONS(41), + [anon_sym_OR] = ACTIONS(41), + [anon_sym_COMMAND] = ACTIONS(41), + [anon_sym_POLICY] = ACTIONS(41), + [anon_sym_TARGET] = ACTIONS(41), + [anon_sym_TEST] = ACTIONS(41), + [anon_sym_DEFINED] = ACTIONS(41), + [anon_sym_CACHE] = ACTIONS(41), + [anon_sym_ENV] = ACTIONS(41), + [anon_sym_IN_LIST] = ACTIONS(41), + [anon_sym_EXISTS] = ACTIONS(41), + [anon_sym_IS_NEWER_THAN] = ACTIONS(41), + [anon_sym_IS_DIRECTORY] = ACTIONS(41), + [anon_sym_IS_SYMLINK] = ACTIONS(41), + [anon_sym_IS_ABSOLUTE] = ACTIONS(41), + [anon_sym_MATCHES] = ACTIONS(41), + [anon_sym_LESS] = ACTIONS(43), + [anon_sym_GREATER] = ACTIONS(43), + [anon_sym_EQUAL] = ACTIONS(41), + [anon_sym_LESS_EQUAL] = ACTIONS(41), + [anon_sym_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_STRLESS] = ACTIONS(43), + [anon_sym_STRGREATER] = ACTIONS(43), + [anon_sym_STREQUAL] = ACTIONS(41), + [anon_sym_STRLESS_EQUAL] = ACTIONS(41), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS] = ACTIONS(43), + [anon_sym_VERSION_GREATER] = ACTIONS(43), + [anon_sym_VERSION_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(90), + [sym_bracket_argument] = ACTIONS(39), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [9] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(506), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(9), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(99), - [anon_sym_ON] = ACTIONS(99), - [anon_sym_YES] = ACTIONS(99), - [anon_sym_TRUE] = ACTIONS(99), - [anon_sym_Y] = ACTIONS(101), - [anon_sym_0] = ACTIONS(99), - [anon_sym_OFF] = ACTIONS(99), - [anon_sym_NO] = ACTIONS(101), - [anon_sym_FALSE] = ACTIONS(99), - [anon_sym_N] = ACTIONS(101), - [anon_sym_IGNORE] = ACTIONS(99), - [anon_sym_NOTFOUND] = ACTIONS(99), - [anon_sym_NOT] = ACTIONS(101), - [anon_sym_AND] = ACTIONS(99), - [anon_sym_OR] = ACTIONS(99), - [anon_sym_COMMAND] = ACTIONS(99), - [anon_sym_POLICY] = ACTIONS(99), - [anon_sym_TARGET] = ACTIONS(99), - [anon_sym_TEST] = ACTIONS(99), - [anon_sym_DEFINED] = ACTIONS(99), - [anon_sym_CACHE] = ACTIONS(99), - [anon_sym_ENV] = ACTIONS(99), - [anon_sym_IN_LIST] = ACTIONS(99), - [anon_sym_EXISTS] = ACTIONS(99), - [anon_sym_IS_NEWER_THAN] = ACTIONS(99), - [anon_sym_IS_DIRECTORY] = ACTIONS(99), - [anon_sym_IS_SYMLINK] = ACTIONS(99), - [anon_sym_IS_ABSOLUTE] = ACTIONS(99), - [anon_sym_MATCHES] = ACTIONS(99), - [anon_sym_LESS] = ACTIONS(101), - [anon_sym_GREATER] = ACTIONS(101), - [anon_sym_EQUAL] = ACTIONS(99), - [anon_sym_LESS_EQUAL] = ACTIONS(99), - [anon_sym_GREATER_EQUAL] = ACTIONS(99), - [anon_sym_STRLESS] = ACTIONS(101), - [anon_sym_STRGREATER] = ACTIONS(101), - [anon_sym_STREQUAL] = ACTIONS(99), - [anon_sym_STRLESS_EQUAL] = ACTIONS(99), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(99), - [anon_sym_VERSION_LESS] = ACTIONS(101), - [anon_sym_VERSION_GREATER] = ACTIONS(101), - [anon_sym_VERSION_EQUAL] = ACTIONS(99), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(99), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(99), - [anon_sym_RPAREN] = ACTIONS(103), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(398), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(104), + [anon_sym_ON] = ACTIONS(104), + [anon_sym_YES] = ACTIONS(104), + [anon_sym_TRUE] = ACTIONS(104), + [anon_sym_Y] = ACTIONS(106), + [anon_sym_0] = ACTIONS(104), + [anon_sym_OFF] = ACTIONS(104), + [anon_sym_NO] = ACTIONS(106), + [anon_sym_FALSE] = ACTIONS(104), + [anon_sym_N] = ACTIONS(106), + [anon_sym_IGNORE] = ACTIONS(104), + [anon_sym_NOTFOUND] = ACTIONS(104), + [anon_sym_NOT] = ACTIONS(106), + [anon_sym_AND] = ACTIONS(104), + [anon_sym_OR] = ACTIONS(104), + [anon_sym_COMMAND] = ACTIONS(104), + [anon_sym_POLICY] = ACTIONS(104), + [anon_sym_TARGET] = ACTIONS(104), + [anon_sym_TEST] = ACTIONS(104), + [anon_sym_DEFINED] = ACTIONS(104), + [anon_sym_CACHE] = ACTIONS(104), + [anon_sym_ENV] = ACTIONS(104), + [anon_sym_IN_LIST] = ACTIONS(104), + [anon_sym_EXISTS] = ACTIONS(104), + [anon_sym_IS_NEWER_THAN] = ACTIONS(104), + [anon_sym_IS_DIRECTORY] = ACTIONS(104), + [anon_sym_IS_SYMLINK] = ACTIONS(104), + [anon_sym_IS_ABSOLUTE] = ACTIONS(104), + [anon_sym_MATCHES] = ACTIONS(104), + [anon_sym_LESS] = ACTIONS(106), + [anon_sym_GREATER] = ACTIONS(106), + [anon_sym_EQUAL] = ACTIONS(104), + [anon_sym_LESS_EQUAL] = ACTIONS(104), + [anon_sym_GREATER_EQUAL] = ACTIONS(104), + [anon_sym_STRLESS] = ACTIONS(106), + [anon_sym_STRGREATER] = ACTIONS(106), + [anon_sym_STREQUAL] = ACTIONS(104), + [anon_sym_STRLESS_EQUAL] = ACTIONS(104), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(104), + [anon_sym_VERSION_LESS] = ACTIONS(106), + [anon_sym_VERSION_GREATER] = ACTIONS(106), + [anon_sym_VERSION_EQUAL] = ACTIONS(104), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(104), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(108), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [10] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(436), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(10), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(107), - [anon_sym_ON] = ACTIONS(107), - [anon_sym_YES] = ACTIONS(107), - [anon_sym_TRUE] = ACTIONS(107), - [anon_sym_Y] = ACTIONS(109), - [anon_sym_0] = ACTIONS(107), - [anon_sym_OFF] = ACTIONS(107), - [anon_sym_NO] = ACTIONS(109), - [anon_sym_FALSE] = ACTIONS(107), - [anon_sym_N] = ACTIONS(109), - [anon_sym_IGNORE] = ACTIONS(107), - [anon_sym_NOTFOUND] = ACTIONS(107), - [anon_sym_NOT] = ACTIONS(109), - [anon_sym_AND] = ACTIONS(107), - [anon_sym_OR] = ACTIONS(107), - [anon_sym_COMMAND] = ACTIONS(107), - [anon_sym_POLICY] = ACTIONS(107), - [anon_sym_TARGET] = ACTIONS(107), - [anon_sym_TEST] = ACTIONS(107), - [anon_sym_DEFINED] = ACTIONS(107), - [anon_sym_CACHE] = ACTIONS(107), - [anon_sym_ENV] = ACTIONS(107), - [anon_sym_IN_LIST] = ACTIONS(107), - [anon_sym_EXISTS] = ACTIONS(107), - [anon_sym_IS_NEWER_THAN] = ACTIONS(107), - [anon_sym_IS_DIRECTORY] = ACTIONS(107), - [anon_sym_IS_SYMLINK] = ACTIONS(107), - [anon_sym_IS_ABSOLUTE] = ACTIONS(107), - [anon_sym_MATCHES] = ACTIONS(107), - [anon_sym_LESS] = ACTIONS(109), - [anon_sym_GREATER] = ACTIONS(109), - [anon_sym_EQUAL] = ACTIONS(107), - [anon_sym_LESS_EQUAL] = ACTIONS(107), - [anon_sym_GREATER_EQUAL] = ACTIONS(107), - [anon_sym_STRLESS] = ACTIONS(109), - [anon_sym_STRGREATER] = ACTIONS(109), - [anon_sym_STREQUAL] = ACTIONS(107), - [anon_sym_STRLESS_EQUAL] = ACTIONS(107), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(107), - [anon_sym_VERSION_LESS] = ACTIONS(109), - [anon_sym_VERSION_GREATER] = ACTIONS(109), - [anon_sym_VERSION_EQUAL] = ACTIONS(107), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(107), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(111), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(406), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(112), + [anon_sym_ON] = ACTIONS(112), + [anon_sym_YES] = ACTIONS(112), + [anon_sym_TRUE] = ACTIONS(112), + [anon_sym_Y] = ACTIONS(114), + [anon_sym_0] = ACTIONS(112), + [anon_sym_OFF] = ACTIONS(112), + [anon_sym_NO] = ACTIONS(114), + [anon_sym_FALSE] = ACTIONS(112), + [anon_sym_N] = ACTIONS(114), + [anon_sym_IGNORE] = ACTIONS(112), + [anon_sym_NOTFOUND] = ACTIONS(112), + [anon_sym_NOT] = ACTIONS(114), + [anon_sym_AND] = ACTIONS(112), + [anon_sym_OR] = ACTIONS(112), + [anon_sym_COMMAND] = ACTIONS(112), + [anon_sym_POLICY] = ACTIONS(112), + [anon_sym_TARGET] = ACTIONS(112), + [anon_sym_TEST] = ACTIONS(112), + [anon_sym_DEFINED] = ACTIONS(112), + [anon_sym_CACHE] = ACTIONS(112), + [anon_sym_ENV] = ACTIONS(112), + [anon_sym_IN_LIST] = ACTIONS(112), + [anon_sym_EXISTS] = ACTIONS(112), + [anon_sym_IS_NEWER_THAN] = ACTIONS(112), + [anon_sym_IS_DIRECTORY] = ACTIONS(112), + [anon_sym_IS_SYMLINK] = ACTIONS(112), + [anon_sym_IS_ABSOLUTE] = ACTIONS(112), + [anon_sym_MATCHES] = ACTIONS(112), + [anon_sym_LESS] = ACTIONS(114), + [anon_sym_GREATER] = ACTIONS(114), + [anon_sym_EQUAL] = ACTIONS(112), + [anon_sym_LESS_EQUAL] = ACTIONS(112), + [anon_sym_GREATER_EQUAL] = ACTIONS(112), + [anon_sym_STRLESS] = ACTIONS(114), + [anon_sym_STRGREATER] = ACTIONS(114), + [anon_sym_STREQUAL] = ACTIONS(112), + [anon_sym_STRLESS_EQUAL] = ACTIONS(112), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(112), + [anon_sym_VERSION_LESS] = ACTIONS(114), + [anon_sym_VERSION_GREATER] = ACTIONS(114), + [anon_sym_VERSION_EQUAL] = ACTIONS(112), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(112), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(112), + [anon_sym_RPAREN] = ACTIONS(116), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [11] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(485), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(11), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(113), - [anon_sym_ON] = ACTIONS(113), - [anon_sym_YES] = ACTIONS(113), - [anon_sym_TRUE] = ACTIONS(113), - [anon_sym_Y] = ACTIONS(115), - [anon_sym_0] = ACTIONS(113), - [anon_sym_OFF] = ACTIONS(113), - [anon_sym_NO] = ACTIONS(115), - [anon_sym_FALSE] = ACTIONS(113), - [anon_sym_N] = ACTIONS(115), - [anon_sym_IGNORE] = ACTIONS(113), - [anon_sym_NOTFOUND] = ACTIONS(113), - [anon_sym_NOT] = ACTIONS(115), - [anon_sym_AND] = ACTIONS(113), - [anon_sym_OR] = ACTIONS(113), - [anon_sym_COMMAND] = ACTIONS(113), - [anon_sym_POLICY] = ACTIONS(113), - [anon_sym_TARGET] = ACTIONS(113), - [anon_sym_TEST] = ACTIONS(113), - [anon_sym_DEFINED] = ACTIONS(113), - [anon_sym_CACHE] = ACTIONS(113), - [anon_sym_ENV] = ACTIONS(113), - [anon_sym_IN_LIST] = ACTIONS(113), - [anon_sym_EXISTS] = ACTIONS(113), - [anon_sym_IS_NEWER_THAN] = ACTIONS(113), - [anon_sym_IS_DIRECTORY] = ACTIONS(113), - [anon_sym_IS_SYMLINK] = ACTIONS(113), - [anon_sym_IS_ABSOLUTE] = ACTIONS(113), - [anon_sym_MATCHES] = ACTIONS(113), - [anon_sym_LESS] = ACTIONS(115), - [anon_sym_GREATER] = ACTIONS(115), - [anon_sym_EQUAL] = ACTIONS(113), - [anon_sym_LESS_EQUAL] = ACTIONS(113), - [anon_sym_GREATER_EQUAL] = ACTIONS(113), - [anon_sym_STRLESS] = ACTIONS(115), - [anon_sym_STRGREATER] = ACTIONS(115), - [anon_sym_STREQUAL] = ACTIONS(113), - [anon_sym_STRLESS_EQUAL] = ACTIONS(113), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(113), - [anon_sym_VERSION_LESS] = ACTIONS(115), - [anon_sym_VERSION_GREATER] = ACTIONS(115), - [anon_sym_VERSION_EQUAL] = ACTIONS(113), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(113), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(113), - [anon_sym_RPAREN] = ACTIONS(117), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(397), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(118), + [anon_sym_ON] = ACTIONS(118), + [anon_sym_YES] = ACTIONS(118), + [anon_sym_TRUE] = ACTIONS(118), + [anon_sym_Y] = ACTIONS(120), + [anon_sym_0] = ACTIONS(118), + [anon_sym_OFF] = ACTIONS(118), + [anon_sym_NO] = ACTIONS(120), + [anon_sym_FALSE] = ACTIONS(118), + [anon_sym_N] = ACTIONS(120), + [anon_sym_IGNORE] = ACTIONS(118), + [anon_sym_NOTFOUND] = ACTIONS(118), + [anon_sym_NOT] = ACTIONS(120), + [anon_sym_AND] = ACTIONS(118), + [anon_sym_OR] = ACTIONS(118), + [anon_sym_COMMAND] = ACTIONS(118), + [anon_sym_POLICY] = ACTIONS(118), + [anon_sym_TARGET] = ACTIONS(118), + [anon_sym_TEST] = ACTIONS(118), + [anon_sym_DEFINED] = ACTIONS(118), + [anon_sym_CACHE] = ACTIONS(118), + [anon_sym_ENV] = ACTIONS(118), + [anon_sym_IN_LIST] = ACTIONS(118), + [anon_sym_EXISTS] = ACTIONS(118), + [anon_sym_IS_NEWER_THAN] = ACTIONS(118), + [anon_sym_IS_DIRECTORY] = ACTIONS(118), + [anon_sym_IS_SYMLINK] = ACTIONS(118), + [anon_sym_IS_ABSOLUTE] = ACTIONS(118), + [anon_sym_MATCHES] = ACTIONS(118), + [anon_sym_LESS] = ACTIONS(120), + [anon_sym_GREATER] = ACTIONS(120), + [anon_sym_EQUAL] = ACTIONS(118), + [anon_sym_LESS_EQUAL] = ACTIONS(118), + [anon_sym_GREATER_EQUAL] = ACTIONS(118), + [anon_sym_STRLESS] = ACTIONS(120), + [anon_sym_STRGREATER] = ACTIONS(120), + [anon_sym_STREQUAL] = ACTIONS(118), + [anon_sym_STRLESS_EQUAL] = ACTIONS(118), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(118), + [anon_sym_VERSION_LESS] = ACTIONS(120), + [anon_sym_VERSION_GREATER] = ACTIONS(120), + [anon_sym_VERSION_EQUAL] = ACTIONS(118), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(118), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(122), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [12] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(504), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(12), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(119), - [anon_sym_ON] = ACTIONS(119), - [anon_sym_YES] = ACTIONS(119), - [anon_sym_TRUE] = ACTIONS(119), - [anon_sym_Y] = ACTIONS(121), - [anon_sym_0] = ACTIONS(119), - [anon_sym_OFF] = ACTIONS(119), - [anon_sym_NO] = ACTIONS(121), - [anon_sym_FALSE] = ACTIONS(119), - [anon_sym_N] = ACTIONS(121), - [anon_sym_IGNORE] = ACTIONS(119), - [anon_sym_NOTFOUND] = ACTIONS(119), - [anon_sym_NOT] = ACTIONS(121), - [anon_sym_AND] = ACTIONS(119), - [anon_sym_OR] = ACTIONS(119), - [anon_sym_COMMAND] = ACTIONS(119), - [anon_sym_POLICY] = ACTIONS(119), - [anon_sym_TARGET] = ACTIONS(119), - [anon_sym_TEST] = ACTIONS(119), - [anon_sym_DEFINED] = ACTIONS(119), - [anon_sym_CACHE] = ACTIONS(119), - [anon_sym_ENV] = ACTIONS(119), - [anon_sym_IN_LIST] = ACTIONS(119), - [anon_sym_EXISTS] = ACTIONS(119), - [anon_sym_IS_NEWER_THAN] = ACTIONS(119), - [anon_sym_IS_DIRECTORY] = ACTIONS(119), - [anon_sym_IS_SYMLINK] = ACTIONS(119), - [anon_sym_IS_ABSOLUTE] = ACTIONS(119), - [anon_sym_MATCHES] = ACTIONS(119), - [anon_sym_LESS] = ACTIONS(121), - [anon_sym_GREATER] = ACTIONS(121), - [anon_sym_EQUAL] = ACTIONS(119), - [anon_sym_LESS_EQUAL] = ACTIONS(119), - [anon_sym_GREATER_EQUAL] = ACTIONS(119), - [anon_sym_STRLESS] = ACTIONS(121), - [anon_sym_STRGREATER] = ACTIONS(121), - [anon_sym_STREQUAL] = ACTIONS(119), - [anon_sym_STRLESS_EQUAL] = ACTIONS(119), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(119), - [anon_sym_VERSION_LESS] = ACTIONS(121), - [anon_sym_VERSION_GREATER] = ACTIONS(121), - [anon_sym_VERSION_EQUAL] = ACTIONS(119), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(119), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(123), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(417), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(124), + [anon_sym_ON] = ACTIONS(124), + [anon_sym_YES] = ACTIONS(124), + [anon_sym_TRUE] = ACTIONS(124), + [anon_sym_Y] = ACTIONS(126), + [anon_sym_0] = ACTIONS(124), + [anon_sym_OFF] = ACTIONS(124), + [anon_sym_NO] = ACTIONS(126), + [anon_sym_FALSE] = ACTIONS(124), + [anon_sym_N] = ACTIONS(126), + [anon_sym_IGNORE] = ACTIONS(124), + [anon_sym_NOTFOUND] = ACTIONS(124), + [anon_sym_NOT] = ACTIONS(126), + [anon_sym_AND] = ACTIONS(124), + [anon_sym_OR] = ACTIONS(124), + [anon_sym_COMMAND] = ACTIONS(124), + [anon_sym_POLICY] = ACTIONS(124), + [anon_sym_TARGET] = ACTIONS(124), + [anon_sym_TEST] = ACTIONS(124), + [anon_sym_DEFINED] = ACTIONS(124), + [anon_sym_CACHE] = ACTIONS(124), + [anon_sym_ENV] = ACTIONS(124), + [anon_sym_IN_LIST] = ACTIONS(124), + [anon_sym_EXISTS] = ACTIONS(124), + [anon_sym_IS_NEWER_THAN] = ACTIONS(124), + [anon_sym_IS_DIRECTORY] = ACTIONS(124), + [anon_sym_IS_SYMLINK] = ACTIONS(124), + [anon_sym_IS_ABSOLUTE] = ACTIONS(124), + [anon_sym_MATCHES] = ACTIONS(124), + [anon_sym_LESS] = ACTIONS(126), + [anon_sym_GREATER] = ACTIONS(126), + [anon_sym_EQUAL] = ACTIONS(124), + [anon_sym_LESS_EQUAL] = ACTIONS(124), + [anon_sym_GREATER_EQUAL] = ACTIONS(124), + [anon_sym_STRLESS] = ACTIONS(126), + [anon_sym_STRGREATER] = ACTIONS(126), + [anon_sym_STREQUAL] = ACTIONS(124), + [anon_sym_STRLESS_EQUAL] = ACTIONS(124), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(124), + [anon_sym_VERSION_LESS] = ACTIONS(126), + [anon_sym_VERSION_GREATER] = ACTIONS(126), + [anon_sym_VERSION_EQUAL] = ACTIONS(124), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(124), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(128), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [13] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(427), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(13), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(125), - [anon_sym_ON] = ACTIONS(125), - [anon_sym_YES] = ACTIONS(125), - [anon_sym_TRUE] = ACTIONS(125), - [anon_sym_Y] = ACTIONS(127), - [anon_sym_0] = ACTIONS(125), - [anon_sym_OFF] = ACTIONS(125), - [anon_sym_NO] = ACTIONS(127), - [anon_sym_FALSE] = ACTIONS(125), - [anon_sym_N] = ACTIONS(127), - [anon_sym_IGNORE] = ACTIONS(125), - [anon_sym_NOTFOUND] = ACTIONS(125), - [anon_sym_NOT] = ACTIONS(127), - [anon_sym_AND] = ACTIONS(125), - [anon_sym_OR] = ACTIONS(125), - [anon_sym_COMMAND] = ACTIONS(125), - [anon_sym_POLICY] = ACTIONS(125), - [anon_sym_TARGET] = ACTIONS(125), - [anon_sym_TEST] = ACTIONS(125), - [anon_sym_DEFINED] = ACTIONS(125), - [anon_sym_CACHE] = ACTIONS(125), - [anon_sym_ENV] = ACTIONS(125), - [anon_sym_IN_LIST] = ACTIONS(125), - [anon_sym_EXISTS] = ACTIONS(125), - [anon_sym_IS_NEWER_THAN] = ACTIONS(125), - [anon_sym_IS_DIRECTORY] = ACTIONS(125), - [anon_sym_IS_SYMLINK] = ACTIONS(125), - [anon_sym_IS_ABSOLUTE] = ACTIONS(125), - [anon_sym_MATCHES] = ACTIONS(125), - [anon_sym_LESS] = ACTIONS(127), - [anon_sym_GREATER] = ACTIONS(127), - [anon_sym_EQUAL] = ACTIONS(125), - [anon_sym_LESS_EQUAL] = ACTIONS(125), - [anon_sym_GREATER_EQUAL] = ACTIONS(125), - [anon_sym_STRLESS] = ACTIONS(127), - [anon_sym_STRGREATER] = ACTIONS(127), - [anon_sym_STREQUAL] = ACTIONS(125), - [anon_sym_STRLESS_EQUAL] = ACTIONS(125), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(125), - [anon_sym_VERSION_LESS] = ACTIONS(127), - [anon_sym_VERSION_GREATER] = ACTIONS(127), - [anon_sym_VERSION_EQUAL] = ACTIONS(125), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(125), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(129), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(404), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(130), + [anon_sym_ON] = ACTIONS(130), + [anon_sym_YES] = ACTIONS(130), + [anon_sym_TRUE] = ACTIONS(130), + [anon_sym_Y] = ACTIONS(132), + [anon_sym_0] = ACTIONS(130), + [anon_sym_OFF] = ACTIONS(130), + [anon_sym_NO] = ACTIONS(132), + [anon_sym_FALSE] = ACTIONS(130), + [anon_sym_N] = ACTIONS(132), + [anon_sym_IGNORE] = ACTIONS(130), + [anon_sym_NOTFOUND] = ACTIONS(130), + [anon_sym_NOT] = ACTIONS(132), + [anon_sym_AND] = ACTIONS(130), + [anon_sym_OR] = ACTIONS(130), + [anon_sym_COMMAND] = ACTIONS(130), + [anon_sym_POLICY] = ACTIONS(130), + [anon_sym_TARGET] = ACTIONS(130), + [anon_sym_TEST] = ACTIONS(130), + [anon_sym_DEFINED] = ACTIONS(130), + [anon_sym_CACHE] = ACTIONS(130), + [anon_sym_ENV] = ACTIONS(130), + [anon_sym_IN_LIST] = ACTIONS(130), + [anon_sym_EXISTS] = ACTIONS(130), + [anon_sym_IS_NEWER_THAN] = ACTIONS(130), + [anon_sym_IS_DIRECTORY] = ACTIONS(130), + [anon_sym_IS_SYMLINK] = ACTIONS(130), + [anon_sym_IS_ABSOLUTE] = ACTIONS(130), + [anon_sym_MATCHES] = ACTIONS(130), + [anon_sym_LESS] = ACTIONS(132), + [anon_sym_GREATER] = ACTIONS(132), + [anon_sym_EQUAL] = ACTIONS(130), + [anon_sym_LESS_EQUAL] = ACTIONS(130), + [anon_sym_GREATER_EQUAL] = ACTIONS(130), + [anon_sym_STRLESS] = ACTIONS(132), + [anon_sym_STRGREATER] = ACTIONS(132), + [anon_sym_STREQUAL] = ACTIONS(130), + [anon_sym_STRLESS_EQUAL] = ACTIONS(130), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(130), + [anon_sym_VERSION_LESS] = ACTIONS(132), + [anon_sym_VERSION_GREATER] = ACTIONS(132), + [anon_sym_VERSION_EQUAL] = ACTIONS(130), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(130), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(134), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [14] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(447), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(14), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(131), - [anon_sym_ON] = ACTIONS(131), - [anon_sym_YES] = ACTIONS(131), - [anon_sym_TRUE] = ACTIONS(131), - [anon_sym_Y] = ACTIONS(133), - [anon_sym_0] = ACTIONS(131), - [anon_sym_OFF] = ACTIONS(131), - [anon_sym_NO] = ACTIONS(133), - [anon_sym_FALSE] = ACTIONS(131), - [anon_sym_N] = ACTIONS(133), - [anon_sym_IGNORE] = ACTIONS(131), - [anon_sym_NOTFOUND] = ACTIONS(131), - [anon_sym_NOT] = ACTIONS(133), - [anon_sym_AND] = ACTIONS(131), - [anon_sym_OR] = ACTIONS(131), - [anon_sym_COMMAND] = ACTIONS(131), - [anon_sym_POLICY] = ACTIONS(131), - [anon_sym_TARGET] = ACTIONS(131), - [anon_sym_TEST] = ACTIONS(131), - [anon_sym_DEFINED] = ACTIONS(131), - [anon_sym_CACHE] = ACTIONS(131), - [anon_sym_ENV] = ACTIONS(131), - [anon_sym_IN_LIST] = ACTIONS(131), - [anon_sym_EXISTS] = ACTIONS(131), - [anon_sym_IS_NEWER_THAN] = ACTIONS(131), - [anon_sym_IS_DIRECTORY] = ACTIONS(131), - [anon_sym_IS_SYMLINK] = ACTIONS(131), - [anon_sym_IS_ABSOLUTE] = ACTIONS(131), - [anon_sym_MATCHES] = ACTIONS(131), - [anon_sym_LESS] = ACTIONS(133), - [anon_sym_GREATER] = ACTIONS(133), - [anon_sym_EQUAL] = ACTIONS(131), - [anon_sym_LESS_EQUAL] = ACTIONS(131), - [anon_sym_GREATER_EQUAL] = ACTIONS(131), - [anon_sym_STRLESS] = ACTIONS(133), - [anon_sym_STRGREATER] = ACTIONS(133), - [anon_sym_STREQUAL] = ACTIONS(131), - [anon_sym_STRLESS_EQUAL] = ACTIONS(131), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(131), - [anon_sym_VERSION_LESS] = ACTIONS(133), - [anon_sym_VERSION_GREATER] = ACTIONS(133), - [anon_sym_VERSION_EQUAL] = ACTIONS(131), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(131), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(135), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(401), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(136), + [anon_sym_ON] = ACTIONS(136), + [anon_sym_YES] = ACTIONS(136), + [anon_sym_TRUE] = ACTIONS(136), + [anon_sym_Y] = ACTIONS(138), + [anon_sym_0] = ACTIONS(136), + [anon_sym_OFF] = ACTIONS(136), + [anon_sym_NO] = ACTIONS(138), + [anon_sym_FALSE] = ACTIONS(136), + [anon_sym_N] = ACTIONS(138), + [anon_sym_IGNORE] = ACTIONS(136), + [anon_sym_NOTFOUND] = ACTIONS(136), + [anon_sym_NOT] = ACTIONS(138), + [anon_sym_AND] = ACTIONS(136), + [anon_sym_OR] = ACTIONS(136), + [anon_sym_COMMAND] = ACTIONS(136), + [anon_sym_POLICY] = ACTIONS(136), + [anon_sym_TARGET] = ACTIONS(136), + [anon_sym_TEST] = ACTIONS(136), + [anon_sym_DEFINED] = ACTIONS(136), + [anon_sym_CACHE] = ACTIONS(136), + [anon_sym_ENV] = ACTIONS(136), + [anon_sym_IN_LIST] = ACTIONS(136), + [anon_sym_EXISTS] = ACTIONS(136), + [anon_sym_IS_NEWER_THAN] = ACTIONS(136), + [anon_sym_IS_DIRECTORY] = ACTIONS(136), + [anon_sym_IS_SYMLINK] = ACTIONS(136), + [anon_sym_IS_ABSOLUTE] = ACTIONS(136), + [anon_sym_MATCHES] = ACTIONS(136), + [anon_sym_LESS] = ACTIONS(138), + [anon_sym_GREATER] = ACTIONS(138), + [anon_sym_EQUAL] = ACTIONS(136), + [anon_sym_LESS_EQUAL] = ACTIONS(136), + [anon_sym_GREATER_EQUAL] = ACTIONS(136), + [anon_sym_STRLESS] = ACTIONS(138), + [anon_sym_STRGREATER] = ACTIONS(138), + [anon_sym_STREQUAL] = ACTIONS(136), + [anon_sym_STRLESS_EQUAL] = ACTIONS(136), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(136), + [anon_sym_VERSION_LESS] = ACTIONS(138), + [anon_sym_VERSION_GREATER] = ACTIONS(138), + [anon_sym_VERSION_EQUAL] = ACTIONS(136), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(136), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(140), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [15] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(441), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(15), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(137), - [anon_sym_ON] = ACTIONS(137), - [anon_sym_YES] = ACTIONS(137), - [anon_sym_TRUE] = ACTIONS(137), - [anon_sym_Y] = ACTIONS(139), - [anon_sym_0] = ACTIONS(137), - [anon_sym_OFF] = ACTIONS(137), - [anon_sym_NO] = ACTIONS(139), - [anon_sym_FALSE] = ACTIONS(137), - [anon_sym_N] = ACTIONS(139), - [anon_sym_IGNORE] = ACTIONS(137), - [anon_sym_NOTFOUND] = ACTIONS(137), - [anon_sym_NOT] = ACTIONS(139), - [anon_sym_AND] = ACTIONS(137), - [anon_sym_OR] = ACTIONS(137), - [anon_sym_COMMAND] = ACTIONS(137), - [anon_sym_POLICY] = ACTIONS(137), - [anon_sym_TARGET] = ACTIONS(137), - [anon_sym_TEST] = ACTIONS(137), - [anon_sym_DEFINED] = ACTIONS(137), - [anon_sym_CACHE] = ACTIONS(137), - [anon_sym_ENV] = ACTIONS(137), - [anon_sym_IN_LIST] = ACTIONS(137), - [anon_sym_EXISTS] = ACTIONS(137), - [anon_sym_IS_NEWER_THAN] = ACTIONS(137), - [anon_sym_IS_DIRECTORY] = ACTIONS(137), - [anon_sym_IS_SYMLINK] = ACTIONS(137), - [anon_sym_IS_ABSOLUTE] = ACTIONS(137), - [anon_sym_MATCHES] = ACTIONS(137), - [anon_sym_LESS] = ACTIONS(139), - [anon_sym_GREATER] = ACTIONS(139), - [anon_sym_EQUAL] = ACTIONS(137), - [anon_sym_LESS_EQUAL] = ACTIONS(137), - [anon_sym_GREATER_EQUAL] = ACTIONS(137), - [anon_sym_STRLESS] = ACTIONS(139), - [anon_sym_STRGREATER] = ACTIONS(139), - [anon_sym_STREQUAL] = ACTIONS(137), - [anon_sym_STRLESS_EQUAL] = ACTIONS(137), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(137), - [anon_sym_VERSION_LESS] = ACTIONS(139), - [anon_sym_VERSION_GREATER] = ACTIONS(139), - [anon_sym_VERSION_EQUAL] = ACTIONS(137), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(137), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(141), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(424), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(142), + [anon_sym_ON] = ACTIONS(142), + [anon_sym_YES] = ACTIONS(142), + [anon_sym_TRUE] = ACTIONS(142), + [anon_sym_Y] = ACTIONS(144), + [anon_sym_0] = ACTIONS(142), + [anon_sym_OFF] = ACTIONS(142), + [anon_sym_NO] = ACTIONS(144), + [anon_sym_FALSE] = ACTIONS(142), + [anon_sym_N] = ACTIONS(144), + [anon_sym_IGNORE] = ACTIONS(142), + [anon_sym_NOTFOUND] = ACTIONS(142), + [anon_sym_NOT] = ACTIONS(144), + [anon_sym_AND] = ACTIONS(142), + [anon_sym_OR] = ACTIONS(142), + [anon_sym_COMMAND] = ACTIONS(142), + [anon_sym_POLICY] = ACTIONS(142), + [anon_sym_TARGET] = ACTIONS(142), + [anon_sym_TEST] = ACTIONS(142), + [anon_sym_DEFINED] = ACTIONS(142), + [anon_sym_CACHE] = ACTIONS(142), + [anon_sym_ENV] = ACTIONS(142), + [anon_sym_IN_LIST] = ACTIONS(142), + [anon_sym_EXISTS] = ACTIONS(142), + [anon_sym_IS_NEWER_THAN] = ACTIONS(142), + [anon_sym_IS_DIRECTORY] = ACTIONS(142), + [anon_sym_IS_SYMLINK] = ACTIONS(142), + [anon_sym_IS_ABSOLUTE] = ACTIONS(142), + [anon_sym_MATCHES] = ACTIONS(142), + [anon_sym_LESS] = ACTIONS(144), + [anon_sym_GREATER] = ACTIONS(144), + [anon_sym_EQUAL] = ACTIONS(142), + [anon_sym_LESS_EQUAL] = ACTIONS(142), + [anon_sym_GREATER_EQUAL] = ACTIONS(142), + [anon_sym_STRLESS] = ACTIONS(144), + [anon_sym_STRGREATER] = ACTIONS(144), + [anon_sym_STREQUAL] = ACTIONS(142), + [anon_sym_STRLESS_EQUAL] = ACTIONS(142), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(142), + [anon_sym_VERSION_LESS] = ACTIONS(144), + [anon_sym_VERSION_GREATER] = ACTIONS(144), + [anon_sym_VERSION_EQUAL] = ACTIONS(142), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(142), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(142), + [anon_sym_RPAREN] = ACTIONS(146), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [16] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(423), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(16), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(143), - [anon_sym_ON] = ACTIONS(143), - [anon_sym_YES] = ACTIONS(143), - [anon_sym_TRUE] = ACTIONS(143), - [anon_sym_Y] = ACTIONS(145), - [anon_sym_0] = ACTIONS(143), - [anon_sym_OFF] = ACTIONS(143), - [anon_sym_NO] = ACTIONS(145), - [anon_sym_FALSE] = ACTIONS(143), - [anon_sym_N] = ACTIONS(145), - [anon_sym_IGNORE] = ACTIONS(143), - [anon_sym_NOTFOUND] = ACTIONS(143), - [anon_sym_NOT] = ACTIONS(145), - [anon_sym_AND] = ACTIONS(143), - [anon_sym_OR] = ACTIONS(143), - [anon_sym_COMMAND] = ACTIONS(143), - [anon_sym_POLICY] = ACTIONS(143), - [anon_sym_TARGET] = ACTIONS(143), - [anon_sym_TEST] = ACTIONS(143), - [anon_sym_DEFINED] = ACTIONS(143), - [anon_sym_CACHE] = ACTIONS(143), - [anon_sym_ENV] = ACTIONS(143), - [anon_sym_IN_LIST] = ACTIONS(143), - [anon_sym_EXISTS] = ACTIONS(143), - [anon_sym_IS_NEWER_THAN] = ACTIONS(143), - [anon_sym_IS_DIRECTORY] = ACTIONS(143), - [anon_sym_IS_SYMLINK] = ACTIONS(143), - [anon_sym_IS_ABSOLUTE] = ACTIONS(143), - [anon_sym_MATCHES] = ACTIONS(143), - [anon_sym_LESS] = ACTIONS(145), - [anon_sym_GREATER] = ACTIONS(145), - [anon_sym_EQUAL] = ACTIONS(143), - [anon_sym_LESS_EQUAL] = ACTIONS(143), - [anon_sym_GREATER_EQUAL] = ACTIONS(143), - [anon_sym_STRLESS] = ACTIONS(145), - [anon_sym_STRGREATER] = ACTIONS(145), - [anon_sym_STREQUAL] = ACTIONS(143), - [anon_sym_STRLESS_EQUAL] = ACTIONS(143), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(143), - [anon_sym_VERSION_LESS] = ACTIONS(145), - [anon_sym_VERSION_GREATER] = ACTIONS(145), - [anon_sym_VERSION_EQUAL] = ACTIONS(143), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(143), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(143), - [anon_sym_RPAREN] = ACTIONS(147), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(399), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(148), + [anon_sym_ON] = ACTIONS(148), + [anon_sym_YES] = ACTIONS(148), + [anon_sym_TRUE] = ACTIONS(148), + [anon_sym_Y] = ACTIONS(150), + [anon_sym_0] = ACTIONS(148), + [anon_sym_OFF] = ACTIONS(148), + [anon_sym_NO] = ACTIONS(150), + [anon_sym_FALSE] = ACTIONS(148), + [anon_sym_N] = ACTIONS(150), + [anon_sym_IGNORE] = ACTIONS(148), + [anon_sym_NOTFOUND] = ACTIONS(148), + [anon_sym_NOT] = ACTIONS(150), + [anon_sym_AND] = ACTIONS(148), + [anon_sym_OR] = ACTIONS(148), + [anon_sym_COMMAND] = ACTIONS(148), + [anon_sym_POLICY] = ACTIONS(148), + [anon_sym_TARGET] = ACTIONS(148), + [anon_sym_TEST] = ACTIONS(148), + [anon_sym_DEFINED] = ACTIONS(148), + [anon_sym_CACHE] = ACTIONS(148), + [anon_sym_ENV] = ACTIONS(148), + [anon_sym_IN_LIST] = ACTIONS(148), + [anon_sym_EXISTS] = ACTIONS(148), + [anon_sym_IS_NEWER_THAN] = ACTIONS(148), + [anon_sym_IS_DIRECTORY] = ACTIONS(148), + [anon_sym_IS_SYMLINK] = ACTIONS(148), + [anon_sym_IS_ABSOLUTE] = ACTIONS(148), + [anon_sym_MATCHES] = ACTIONS(148), + [anon_sym_LESS] = ACTIONS(150), + [anon_sym_GREATER] = ACTIONS(150), + [anon_sym_EQUAL] = ACTIONS(148), + [anon_sym_LESS_EQUAL] = ACTIONS(148), + [anon_sym_GREATER_EQUAL] = ACTIONS(148), + [anon_sym_STRLESS] = ACTIONS(150), + [anon_sym_STRGREATER] = ACTIONS(150), + [anon_sym_STREQUAL] = ACTIONS(148), + [anon_sym_STRLESS_EQUAL] = ACTIONS(148), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(148), + [anon_sym_VERSION_LESS] = ACTIONS(150), + [anon_sym_VERSION_GREATER] = ACTIONS(150), + [anon_sym_VERSION_EQUAL] = ACTIONS(148), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(148), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(152), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [17] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(463), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(17), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(149), - [anon_sym_ON] = ACTIONS(149), - [anon_sym_YES] = ACTIONS(149), - [anon_sym_TRUE] = ACTIONS(149), - [anon_sym_Y] = ACTIONS(151), - [anon_sym_0] = ACTIONS(149), - [anon_sym_OFF] = ACTIONS(149), - [anon_sym_NO] = ACTIONS(151), - [anon_sym_FALSE] = ACTIONS(149), - [anon_sym_N] = ACTIONS(151), - [anon_sym_IGNORE] = ACTIONS(149), - [anon_sym_NOTFOUND] = ACTIONS(149), - [anon_sym_NOT] = ACTIONS(151), - [anon_sym_AND] = ACTIONS(149), - [anon_sym_OR] = ACTIONS(149), - [anon_sym_COMMAND] = ACTIONS(149), - [anon_sym_POLICY] = ACTIONS(149), - [anon_sym_TARGET] = ACTIONS(149), - [anon_sym_TEST] = ACTIONS(149), - [anon_sym_DEFINED] = ACTIONS(149), - [anon_sym_CACHE] = ACTIONS(149), - [anon_sym_ENV] = ACTIONS(149), - [anon_sym_IN_LIST] = ACTIONS(149), - [anon_sym_EXISTS] = ACTIONS(149), - [anon_sym_IS_NEWER_THAN] = ACTIONS(149), - [anon_sym_IS_DIRECTORY] = ACTIONS(149), - [anon_sym_IS_SYMLINK] = ACTIONS(149), - [anon_sym_IS_ABSOLUTE] = ACTIONS(149), - [anon_sym_MATCHES] = ACTIONS(149), - [anon_sym_LESS] = ACTIONS(151), - [anon_sym_GREATER] = ACTIONS(151), - [anon_sym_EQUAL] = ACTIONS(149), - [anon_sym_LESS_EQUAL] = ACTIONS(149), - [anon_sym_GREATER_EQUAL] = ACTIONS(149), - [anon_sym_STRLESS] = ACTIONS(151), - [anon_sym_STRGREATER] = ACTIONS(151), - [anon_sym_STREQUAL] = ACTIONS(149), - [anon_sym_STRLESS_EQUAL] = ACTIONS(149), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(149), - [anon_sym_VERSION_LESS] = ACTIONS(151), - [anon_sym_VERSION_GREATER] = ACTIONS(151), - [anon_sym_VERSION_EQUAL] = ACTIONS(149), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(149), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(153), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(394), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(154), + [anon_sym_ON] = ACTIONS(154), + [anon_sym_YES] = ACTIONS(154), + [anon_sym_TRUE] = ACTIONS(154), + [anon_sym_Y] = ACTIONS(156), + [anon_sym_0] = ACTIONS(154), + [anon_sym_OFF] = ACTIONS(154), + [anon_sym_NO] = ACTIONS(156), + [anon_sym_FALSE] = ACTIONS(154), + [anon_sym_N] = ACTIONS(156), + [anon_sym_IGNORE] = ACTIONS(154), + [anon_sym_NOTFOUND] = ACTIONS(154), + [anon_sym_NOT] = ACTIONS(156), + [anon_sym_AND] = ACTIONS(154), + [anon_sym_OR] = ACTIONS(154), + [anon_sym_COMMAND] = ACTIONS(154), + [anon_sym_POLICY] = ACTIONS(154), + [anon_sym_TARGET] = ACTIONS(154), + [anon_sym_TEST] = ACTIONS(154), + [anon_sym_DEFINED] = ACTIONS(154), + [anon_sym_CACHE] = ACTIONS(154), + [anon_sym_ENV] = ACTIONS(154), + [anon_sym_IN_LIST] = ACTIONS(154), + [anon_sym_EXISTS] = ACTIONS(154), + [anon_sym_IS_NEWER_THAN] = ACTIONS(154), + [anon_sym_IS_DIRECTORY] = ACTIONS(154), + [anon_sym_IS_SYMLINK] = ACTIONS(154), + [anon_sym_IS_ABSOLUTE] = ACTIONS(154), + [anon_sym_MATCHES] = ACTIONS(154), + [anon_sym_LESS] = ACTIONS(156), + [anon_sym_GREATER] = ACTIONS(156), + [anon_sym_EQUAL] = ACTIONS(154), + [anon_sym_LESS_EQUAL] = ACTIONS(154), + [anon_sym_GREATER_EQUAL] = ACTIONS(154), + [anon_sym_STRLESS] = ACTIONS(156), + [anon_sym_STRGREATER] = ACTIONS(156), + [anon_sym_STREQUAL] = ACTIONS(154), + [anon_sym_STRLESS_EQUAL] = ACTIONS(154), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(154), + [anon_sym_VERSION_LESS] = ACTIONS(156), + [anon_sym_VERSION_GREATER] = ACTIONS(156), + [anon_sym_VERSION_EQUAL] = ACTIONS(154), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(154), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(158), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [18] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(434), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(18), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(155), - [anon_sym_ON] = ACTIONS(155), - [anon_sym_YES] = ACTIONS(155), - [anon_sym_TRUE] = ACTIONS(155), - [anon_sym_Y] = ACTIONS(157), - [anon_sym_0] = ACTIONS(155), - [anon_sym_OFF] = ACTIONS(155), - [anon_sym_NO] = ACTIONS(157), - [anon_sym_FALSE] = ACTIONS(155), - [anon_sym_N] = ACTIONS(157), - [anon_sym_IGNORE] = ACTIONS(155), - [anon_sym_NOTFOUND] = ACTIONS(155), - [anon_sym_NOT] = ACTIONS(157), - [anon_sym_AND] = ACTIONS(155), - [anon_sym_OR] = ACTIONS(155), - [anon_sym_COMMAND] = ACTIONS(155), - [anon_sym_POLICY] = ACTIONS(155), - [anon_sym_TARGET] = ACTIONS(155), - [anon_sym_TEST] = ACTIONS(155), - [anon_sym_DEFINED] = ACTIONS(155), - [anon_sym_CACHE] = ACTIONS(155), - [anon_sym_ENV] = ACTIONS(155), - [anon_sym_IN_LIST] = ACTIONS(155), - [anon_sym_EXISTS] = ACTIONS(155), - [anon_sym_IS_NEWER_THAN] = ACTIONS(155), - [anon_sym_IS_DIRECTORY] = ACTIONS(155), - [anon_sym_IS_SYMLINK] = ACTIONS(155), - [anon_sym_IS_ABSOLUTE] = ACTIONS(155), - [anon_sym_MATCHES] = ACTIONS(155), - [anon_sym_LESS] = ACTIONS(157), - [anon_sym_GREATER] = ACTIONS(157), - [anon_sym_EQUAL] = ACTIONS(155), - [anon_sym_LESS_EQUAL] = ACTIONS(155), - [anon_sym_GREATER_EQUAL] = ACTIONS(155), - [anon_sym_STRLESS] = ACTIONS(157), - [anon_sym_STRGREATER] = ACTIONS(157), - [anon_sym_STREQUAL] = ACTIONS(155), - [anon_sym_STRLESS_EQUAL] = ACTIONS(155), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(155), - [anon_sym_VERSION_LESS] = ACTIONS(157), - [anon_sym_VERSION_GREATER] = ACTIONS(157), - [anon_sym_VERSION_EQUAL] = ACTIONS(155), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(155), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(159), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(415), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(160), + [anon_sym_ON] = ACTIONS(160), + [anon_sym_YES] = ACTIONS(160), + [anon_sym_TRUE] = ACTIONS(160), + [anon_sym_Y] = ACTIONS(162), + [anon_sym_0] = ACTIONS(160), + [anon_sym_OFF] = ACTIONS(160), + [anon_sym_NO] = ACTIONS(162), + [anon_sym_FALSE] = ACTIONS(160), + [anon_sym_N] = ACTIONS(162), + [anon_sym_IGNORE] = ACTIONS(160), + [anon_sym_NOTFOUND] = ACTIONS(160), + [anon_sym_NOT] = ACTIONS(162), + [anon_sym_AND] = ACTIONS(160), + [anon_sym_OR] = ACTIONS(160), + [anon_sym_COMMAND] = ACTIONS(160), + [anon_sym_POLICY] = ACTIONS(160), + [anon_sym_TARGET] = ACTIONS(160), + [anon_sym_TEST] = ACTIONS(160), + [anon_sym_DEFINED] = ACTIONS(160), + [anon_sym_CACHE] = ACTIONS(160), + [anon_sym_ENV] = ACTIONS(160), + [anon_sym_IN_LIST] = ACTIONS(160), + [anon_sym_EXISTS] = ACTIONS(160), + [anon_sym_IS_NEWER_THAN] = ACTIONS(160), + [anon_sym_IS_DIRECTORY] = ACTIONS(160), + [anon_sym_IS_SYMLINK] = ACTIONS(160), + [anon_sym_IS_ABSOLUTE] = ACTIONS(160), + [anon_sym_MATCHES] = ACTIONS(160), + [anon_sym_LESS] = ACTIONS(162), + [anon_sym_GREATER] = ACTIONS(162), + [anon_sym_EQUAL] = ACTIONS(160), + [anon_sym_LESS_EQUAL] = ACTIONS(160), + [anon_sym_GREATER_EQUAL] = ACTIONS(160), + [anon_sym_STRLESS] = ACTIONS(162), + [anon_sym_STRGREATER] = ACTIONS(162), + [anon_sym_STREQUAL] = ACTIONS(160), + [anon_sym_STRLESS_EQUAL] = ACTIONS(160), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(160), + [anon_sym_VERSION_LESS] = ACTIONS(162), + [anon_sym_VERSION_GREATER] = ACTIONS(162), + [anon_sym_VERSION_EQUAL] = ACTIONS(160), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(160), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(164), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [19] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(443), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(19), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(161), - [anon_sym_ON] = ACTIONS(161), - [anon_sym_YES] = ACTIONS(161), - [anon_sym_TRUE] = ACTIONS(161), - [anon_sym_Y] = ACTIONS(163), - [anon_sym_0] = ACTIONS(161), - [anon_sym_OFF] = ACTIONS(161), - [anon_sym_NO] = ACTIONS(163), - [anon_sym_FALSE] = ACTIONS(161), - [anon_sym_N] = ACTIONS(163), - [anon_sym_IGNORE] = ACTIONS(161), - [anon_sym_NOTFOUND] = ACTIONS(161), - [anon_sym_NOT] = ACTIONS(163), - [anon_sym_AND] = ACTIONS(161), - [anon_sym_OR] = ACTIONS(161), - [anon_sym_COMMAND] = ACTIONS(161), - [anon_sym_POLICY] = ACTIONS(161), - [anon_sym_TARGET] = ACTIONS(161), - [anon_sym_TEST] = ACTIONS(161), - [anon_sym_DEFINED] = ACTIONS(161), - [anon_sym_CACHE] = ACTIONS(161), - [anon_sym_ENV] = ACTIONS(161), - [anon_sym_IN_LIST] = ACTIONS(161), - [anon_sym_EXISTS] = ACTIONS(161), - [anon_sym_IS_NEWER_THAN] = ACTIONS(161), - [anon_sym_IS_DIRECTORY] = ACTIONS(161), - [anon_sym_IS_SYMLINK] = ACTIONS(161), - [anon_sym_IS_ABSOLUTE] = ACTIONS(161), - [anon_sym_MATCHES] = ACTIONS(161), - [anon_sym_LESS] = ACTIONS(163), - [anon_sym_GREATER] = ACTIONS(163), - [anon_sym_EQUAL] = ACTIONS(161), - [anon_sym_LESS_EQUAL] = ACTIONS(161), - [anon_sym_GREATER_EQUAL] = ACTIONS(161), - [anon_sym_STRLESS] = ACTIONS(163), - [anon_sym_STRGREATER] = ACTIONS(163), - [anon_sym_STREQUAL] = ACTIONS(161), - [anon_sym_STRLESS_EQUAL] = ACTIONS(161), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(161), - [anon_sym_VERSION_LESS] = ACTIONS(163), - [anon_sym_VERSION_GREATER] = ACTIONS(163), - [anon_sym_VERSION_EQUAL] = ACTIONS(161), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(161), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(165), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(431), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(166), + [anon_sym_ON] = ACTIONS(166), + [anon_sym_YES] = ACTIONS(166), + [anon_sym_TRUE] = ACTIONS(166), + [anon_sym_Y] = ACTIONS(168), + [anon_sym_0] = ACTIONS(166), + [anon_sym_OFF] = ACTIONS(166), + [anon_sym_NO] = ACTIONS(168), + [anon_sym_FALSE] = ACTIONS(166), + [anon_sym_N] = ACTIONS(168), + [anon_sym_IGNORE] = ACTIONS(166), + [anon_sym_NOTFOUND] = ACTIONS(166), + [anon_sym_NOT] = ACTIONS(168), + [anon_sym_AND] = ACTIONS(166), + [anon_sym_OR] = ACTIONS(166), + [anon_sym_COMMAND] = ACTIONS(166), + [anon_sym_POLICY] = ACTIONS(166), + [anon_sym_TARGET] = ACTIONS(166), + [anon_sym_TEST] = ACTIONS(166), + [anon_sym_DEFINED] = ACTIONS(166), + [anon_sym_CACHE] = ACTIONS(166), + [anon_sym_ENV] = ACTIONS(166), + [anon_sym_IN_LIST] = ACTIONS(166), + [anon_sym_EXISTS] = ACTIONS(166), + [anon_sym_IS_NEWER_THAN] = ACTIONS(166), + [anon_sym_IS_DIRECTORY] = ACTIONS(166), + [anon_sym_IS_SYMLINK] = ACTIONS(166), + [anon_sym_IS_ABSOLUTE] = ACTIONS(166), + [anon_sym_MATCHES] = ACTIONS(166), + [anon_sym_LESS] = ACTIONS(168), + [anon_sym_GREATER] = ACTIONS(168), + [anon_sym_EQUAL] = ACTIONS(166), + [anon_sym_LESS_EQUAL] = ACTIONS(166), + [anon_sym_GREATER_EQUAL] = ACTIONS(166), + [anon_sym_STRLESS] = ACTIONS(168), + [anon_sym_STRGREATER] = ACTIONS(168), + [anon_sym_STREQUAL] = ACTIONS(166), + [anon_sym_STRLESS_EQUAL] = ACTIONS(166), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(166), + [anon_sym_VERSION_LESS] = ACTIONS(168), + [anon_sym_VERSION_GREATER] = ACTIONS(168), + [anon_sym_VERSION_EQUAL] = ACTIONS(166), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(166), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(170), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [20] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(461), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(20), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(167), - [anon_sym_ON] = ACTIONS(167), - [anon_sym_YES] = ACTIONS(167), - [anon_sym_TRUE] = ACTIONS(167), - [anon_sym_Y] = ACTIONS(169), - [anon_sym_0] = ACTIONS(167), - [anon_sym_OFF] = ACTIONS(167), - [anon_sym_NO] = ACTIONS(169), - [anon_sym_FALSE] = ACTIONS(167), - [anon_sym_N] = ACTIONS(169), - [anon_sym_IGNORE] = ACTIONS(167), - [anon_sym_NOTFOUND] = ACTIONS(167), - [anon_sym_NOT] = ACTIONS(169), - [anon_sym_AND] = ACTIONS(167), - [anon_sym_OR] = ACTIONS(167), - [anon_sym_COMMAND] = ACTIONS(167), - [anon_sym_POLICY] = ACTIONS(167), - [anon_sym_TARGET] = ACTIONS(167), - [anon_sym_TEST] = ACTIONS(167), - [anon_sym_DEFINED] = ACTIONS(167), - [anon_sym_CACHE] = ACTIONS(167), - [anon_sym_ENV] = ACTIONS(167), - [anon_sym_IN_LIST] = ACTIONS(167), - [anon_sym_EXISTS] = ACTIONS(167), - [anon_sym_IS_NEWER_THAN] = ACTIONS(167), - [anon_sym_IS_DIRECTORY] = ACTIONS(167), - [anon_sym_IS_SYMLINK] = ACTIONS(167), - [anon_sym_IS_ABSOLUTE] = ACTIONS(167), - [anon_sym_MATCHES] = ACTIONS(167), - [anon_sym_LESS] = ACTIONS(169), - [anon_sym_GREATER] = ACTIONS(169), - [anon_sym_EQUAL] = ACTIONS(167), - [anon_sym_LESS_EQUAL] = ACTIONS(167), - [anon_sym_GREATER_EQUAL] = ACTIONS(167), - [anon_sym_STRLESS] = ACTIONS(169), - [anon_sym_STRGREATER] = ACTIONS(169), - [anon_sym_STREQUAL] = ACTIONS(167), - [anon_sym_STRLESS_EQUAL] = ACTIONS(167), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(167), - [anon_sym_VERSION_LESS] = ACTIONS(169), - [anon_sym_VERSION_GREATER] = ACTIONS(169), - [anon_sym_VERSION_EQUAL] = ACTIONS(167), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(167), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(171), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(433), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(172), + [anon_sym_ON] = ACTIONS(172), + [anon_sym_YES] = ACTIONS(172), + [anon_sym_TRUE] = ACTIONS(172), + [anon_sym_Y] = ACTIONS(174), + [anon_sym_0] = ACTIONS(172), + [anon_sym_OFF] = ACTIONS(172), + [anon_sym_NO] = ACTIONS(174), + [anon_sym_FALSE] = ACTIONS(172), + [anon_sym_N] = ACTIONS(174), + [anon_sym_IGNORE] = ACTIONS(172), + [anon_sym_NOTFOUND] = ACTIONS(172), + [anon_sym_NOT] = ACTIONS(174), + [anon_sym_AND] = ACTIONS(172), + [anon_sym_OR] = ACTIONS(172), + [anon_sym_COMMAND] = ACTIONS(172), + [anon_sym_POLICY] = ACTIONS(172), + [anon_sym_TARGET] = ACTIONS(172), + [anon_sym_TEST] = ACTIONS(172), + [anon_sym_DEFINED] = ACTIONS(172), + [anon_sym_CACHE] = ACTIONS(172), + [anon_sym_ENV] = ACTIONS(172), + [anon_sym_IN_LIST] = ACTIONS(172), + [anon_sym_EXISTS] = ACTIONS(172), + [anon_sym_IS_NEWER_THAN] = ACTIONS(172), + [anon_sym_IS_DIRECTORY] = ACTIONS(172), + [anon_sym_IS_SYMLINK] = ACTIONS(172), + [anon_sym_IS_ABSOLUTE] = ACTIONS(172), + [anon_sym_MATCHES] = ACTIONS(172), + [anon_sym_LESS] = ACTIONS(174), + [anon_sym_GREATER] = ACTIONS(174), + [anon_sym_EQUAL] = ACTIONS(172), + [anon_sym_LESS_EQUAL] = ACTIONS(172), + [anon_sym_GREATER_EQUAL] = ACTIONS(172), + [anon_sym_STRLESS] = ACTIONS(174), + [anon_sym_STRGREATER] = ACTIONS(174), + [anon_sym_STREQUAL] = ACTIONS(172), + [anon_sym_STRLESS_EQUAL] = ACTIONS(172), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(172), + [anon_sym_VERSION_LESS] = ACTIONS(174), + [anon_sym_VERSION_GREATER] = ACTIONS(174), + [anon_sym_VERSION_EQUAL] = ACTIONS(172), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(172), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(176), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [21] = { - [sym_escape_sequence] = STATE(264), - [sym__escape_encoded] = STATE(278), - [sym_variable_ref] = STATE(264), - [sym_normal_var] = STATE(263), - [sym_env_var] = STATE(263), - [sym_cache_var] = STATE(263), - [sym_argument] = STATE(476), - [sym_quoted_argument] = STATE(431), - [sym_unquoted_argument] = STATE(431), - [sym_comment] = STATE(21), - [aux_sym_unquoted_argument_repeat1] = STATE(192), - [sym__escape_identity] = ACTIONS(85), - [anon_sym_BSLASHt] = ACTIONS(87), - [anon_sym_BSLASHr] = ACTIONS(87), - [anon_sym_BSLASHn] = ACTIONS(87), - [sym__escape_semicolon] = ACTIONS(85), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(89), - [anon_sym_DOLLARENV] = ACTIONS(91), - [anon_sym_DOLLARCACHE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [aux_sym_unquoted_argument_token1] = ACTIONS(97), - [anon_sym_1] = ACTIONS(173), - [anon_sym_ON] = ACTIONS(173), - [anon_sym_YES] = ACTIONS(173), - [anon_sym_TRUE] = ACTIONS(173), - [anon_sym_Y] = ACTIONS(175), - [anon_sym_0] = ACTIONS(173), - [anon_sym_OFF] = ACTIONS(173), - [anon_sym_NO] = ACTIONS(175), - [anon_sym_FALSE] = ACTIONS(173), - [anon_sym_N] = ACTIONS(175), - [anon_sym_IGNORE] = ACTIONS(173), - [anon_sym_NOTFOUND] = ACTIONS(173), - [anon_sym_NOT] = ACTIONS(175), - [anon_sym_AND] = ACTIONS(173), - [anon_sym_OR] = ACTIONS(173), - [anon_sym_COMMAND] = ACTIONS(173), - [anon_sym_POLICY] = ACTIONS(173), - [anon_sym_TARGET] = ACTIONS(173), - [anon_sym_TEST] = ACTIONS(173), - [anon_sym_DEFINED] = ACTIONS(173), - [anon_sym_CACHE] = ACTIONS(173), - [anon_sym_ENV] = ACTIONS(173), - [anon_sym_IN_LIST] = ACTIONS(173), - [anon_sym_EXISTS] = ACTIONS(173), - [anon_sym_IS_NEWER_THAN] = ACTIONS(173), - [anon_sym_IS_DIRECTORY] = ACTIONS(173), - [anon_sym_IS_SYMLINK] = ACTIONS(173), - [anon_sym_IS_ABSOLUTE] = ACTIONS(173), - [anon_sym_MATCHES] = ACTIONS(173), - [anon_sym_LESS] = ACTIONS(175), - [anon_sym_GREATER] = ACTIONS(175), - [anon_sym_EQUAL] = ACTIONS(173), - [anon_sym_LESS_EQUAL] = ACTIONS(173), - [anon_sym_GREATER_EQUAL] = ACTIONS(173), - [anon_sym_STRLESS] = ACTIONS(175), - [anon_sym_STRGREATER] = ACTIONS(175), - [anon_sym_STREQUAL] = ACTIONS(173), - [anon_sym_STRLESS_EQUAL] = ACTIONS(173), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(173), - [anon_sym_VERSION_LESS] = ACTIONS(175), - [anon_sym_VERSION_GREATER] = ACTIONS(175), - [anon_sym_VERSION_EQUAL] = ACTIONS(173), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(173), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(177), - [sym_bracket_argument] = ACTIONS(105), + [sym_escape_sequence] = STATE(184), + [sym__escape_encoded] = STATE(253), + [sym_variable_ref] = STATE(184), + [sym_normal_var] = STATE(258), + [sym_env_var] = STATE(258), + [sym_cache_var] = STATE(258), + [sym_argument] = STATE(422), + [sym_quoted_argument] = STATE(434), + [sym_unquoted_argument] = STATE(434), + [aux_sym_unquoted_argument_repeat1] = STATE(184), + [sym__escape_identity] = ACTIONS(92), + [anon_sym_BSLASHt] = ACTIONS(92), + [anon_sym_BSLASHr] = ACTIONS(92), + [anon_sym_BSLASHn] = ACTIONS(92), + [sym__escape_semicolon] = ACTIONS(92), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), + [anon_sym_DOLLARENV] = ACTIONS(96), + [anon_sym_DOLLARCACHE] = ACTIONS(98), + [anon_sym_DQUOTE] = ACTIONS(100), + [aux_sym_unquoted_argument_token1] = ACTIONS(102), + [anon_sym_1] = ACTIONS(178), + [anon_sym_ON] = ACTIONS(178), + [anon_sym_YES] = ACTIONS(178), + [anon_sym_TRUE] = ACTIONS(178), + [anon_sym_Y] = ACTIONS(180), + [anon_sym_0] = ACTIONS(178), + [anon_sym_OFF] = ACTIONS(178), + [anon_sym_NO] = ACTIONS(180), + [anon_sym_FALSE] = ACTIONS(178), + [anon_sym_N] = ACTIONS(180), + [anon_sym_IGNORE] = ACTIONS(178), + [anon_sym_NOTFOUND] = ACTIONS(178), + [anon_sym_NOT] = ACTIONS(180), + [anon_sym_AND] = ACTIONS(178), + [anon_sym_OR] = ACTIONS(178), + [anon_sym_COMMAND] = ACTIONS(178), + [anon_sym_POLICY] = ACTIONS(178), + [anon_sym_TARGET] = ACTIONS(178), + [anon_sym_TEST] = ACTIONS(178), + [anon_sym_DEFINED] = ACTIONS(178), + [anon_sym_CACHE] = ACTIONS(178), + [anon_sym_ENV] = ACTIONS(178), + [anon_sym_IN_LIST] = ACTIONS(178), + [anon_sym_EXISTS] = ACTIONS(178), + [anon_sym_IS_NEWER_THAN] = ACTIONS(178), + [anon_sym_IS_DIRECTORY] = ACTIONS(178), + [anon_sym_IS_SYMLINK] = ACTIONS(178), + [anon_sym_IS_ABSOLUTE] = ACTIONS(178), + [anon_sym_MATCHES] = ACTIONS(178), + [anon_sym_LESS] = ACTIONS(180), + [anon_sym_GREATER] = ACTIONS(180), + [anon_sym_EQUAL] = ACTIONS(178), + [anon_sym_LESS_EQUAL] = ACTIONS(178), + [anon_sym_GREATER_EQUAL] = ACTIONS(178), + [anon_sym_STRLESS] = ACTIONS(180), + [anon_sym_STRGREATER] = ACTIONS(180), + [anon_sym_STREQUAL] = ACTIONS(178), + [anon_sym_STRLESS_EQUAL] = ACTIONS(178), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(178), + [anon_sym_VERSION_LESS] = ACTIONS(180), + [anon_sym_VERSION_GREATER] = ACTIONS(180), + [anon_sym_VERSION_EQUAL] = ACTIONS(178), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(178), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(182), + [sym_bracket_argument] = ACTIONS(110), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [22] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(22), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(22), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_comment] = STATE(22), [aux_sym_unquoted_argument_repeat1] = STATE(22), - [sym__escape_identity] = ACTIONS(179), - [anon_sym_BSLASHt] = ACTIONS(182), - [anon_sym_BSLASHr] = ACTIONS(182), - [anon_sym_BSLASHn] = ACTIONS(182), - [sym__escape_semicolon] = ACTIONS(179), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), - [anon_sym_DOLLARENV] = ACTIONS(188), - [anon_sym_DOLLARCACHE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(194), - [aux_sym_unquoted_argument_token1] = ACTIONS(196), - [anon_sym_1] = ACTIONS(194), - [anon_sym_ON] = ACTIONS(194), - [anon_sym_YES] = ACTIONS(194), - [anon_sym_TRUE] = ACTIONS(194), - [anon_sym_Y] = ACTIONS(199), - [anon_sym_0] = ACTIONS(194), - [anon_sym_OFF] = ACTIONS(194), - [anon_sym_NO] = ACTIONS(199), - [anon_sym_FALSE] = ACTIONS(194), - [anon_sym_N] = ACTIONS(199), - [anon_sym_IGNORE] = ACTIONS(194), - [anon_sym_NOTFOUND] = ACTIONS(194), - [anon_sym_NOT] = ACTIONS(199), - [anon_sym_AND] = ACTIONS(194), - [anon_sym_OR] = ACTIONS(194), - [anon_sym_COMMAND] = ACTIONS(194), - [anon_sym_POLICY] = ACTIONS(194), - [anon_sym_TARGET] = ACTIONS(194), - [anon_sym_TEST] = ACTIONS(194), - [anon_sym_DEFINED] = ACTIONS(194), - [anon_sym_CACHE] = ACTIONS(194), - [anon_sym_ENV] = ACTIONS(194), - [anon_sym_IN_LIST] = ACTIONS(194), - [anon_sym_EXISTS] = ACTIONS(194), - [anon_sym_IS_NEWER_THAN] = ACTIONS(194), - [anon_sym_IS_DIRECTORY] = ACTIONS(194), - [anon_sym_IS_SYMLINK] = ACTIONS(194), - [anon_sym_IS_ABSOLUTE] = ACTIONS(194), - [anon_sym_MATCHES] = ACTIONS(194), - [anon_sym_LESS] = ACTIONS(199), - [anon_sym_GREATER] = ACTIONS(199), - [anon_sym_EQUAL] = ACTIONS(194), - [anon_sym_LESS_EQUAL] = ACTIONS(194), - [anon_sym_GREATER_EQUAL] = ACTIONS(194), - [anon_sym_STRLESS] = ACTIONS(199), - [anon_sym_STRGREATER] = ACTIONS(199), - [anon_sym_STREQUAL] = ACTIONS(194), - [anon_sym_STRLESS_EQUAL] = ACTIONS(194), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(194), - [anon_sym_VERSION_LESS] = ACTIONS(199), - [anon_sym_VERSION_GREATER] = ACTIONS(199), - [anon_sym_VERSION_EQUAL] = ACTIONS(194), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(194), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(194), - [anon_sym_RPAREN] = ACTIONS(194), - [sym_bracket_argument] = ACTIONS(194), + [sym__escape_identity] = ACTIONS(184), + [anon_sym_BSLASHt] = ACTIONS(184), + [anon_sym_BSLASHr] = ACTIONS(184), + [anon_sym_BSLASHn] = ACTIONS(184), + [sym__escape_semicolon] = ACTIONS(184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DOLLARENV] = ACTIONS(190), + [anon_sym_DOLLARCACHE] = ACTIONS(193), + [anon_sym_DQUOTE] = ACTIONS(196), + [aux_sym_unquoted_argument_token1] = ACTIONS(198), + [anon_sym_1] = ACTIONS(196), + [anon_sym_ON] = ACTIONS(196), + [anon_sym_YES] = ACTIONS(196), + [anon_sym_TRUE] = ACTIONS(196), + [anon_sym_Y] = ACTIONS(201), + [anon_sym_0] = ACTIONS(196), + [anon_sym_OFF] = ACTIONS(196), + [anon_sym_NO] = ACTIONS(201), + [anon_sym_FALSE] = ACTIONS(196), + [anon_sym_N] = ACTIONS(201), + [anon_sym_IGNORE] = ACTIONS(196), + [anon_sym_NOTFOUND] = ACTIONS(196), + [anon_sym_NOT] = ACTIONS(201), + [anon_sym_AND] = ACTIONS(196), + [anon_sym_OR] = ACTIONS(196), + [anon_sym_COMMAND] = ACTIONS(196), + [anon_sym_POLICY] = ACTIONS(196), + [anon_sym_TARGET] = ACTIONS(196), + [anon_sym_TEST] = ACTIONS(196), + [anon_sym_DEFINED] = ACTIONS(196), + [anon_sym_CACHE] = ACTIONS(196), + [anon_sym_ENV] = ACTIONS(196), + [anon_sym_IN_LIST] = ACTIONS(196), + [anon_sym_EXISTS] = ACTIONS(196), + [anon_sym_IS_NEWER_THAN] = ACTIONS(196), + [anon_sym_IS_DIRECTORY] = ACTIONS(196), + [anon_sym_IS_SYMLINK] = ACTIONS(196), + [anon_sym_IS_ABSOLUTE] = ACTIONS(196), + [anon_sym_MATCHES] = ACTIONS(196), + [anon_sym_LESS] = ACTIONS(201), + [anon_sym_GREATER] = ACTIONS(201), + [anon_sym_EQUAL] = ACTIONS(196), + [anon_sym_LESS_EQUAL] = ACTIONS(196), + [anon_sym_GREATER_EQUAL] = ACTIONS(196), + [anon_sym_STRLESS] = ACTIONS(201), + [anon_sym_STRGREATER] = ACTIONS(201), + [anon_sym_STREQUAL] = ACTIONS(196), + [anon_sym_STRLESS_EQUAL] = ACTIONS(196), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(196), + [anon_sym_VERSION_LESS] = ACTIONS(201), + [anon_sym_VERSION_GREATER] = ACTIONS(201), + [anon_sym_VERSION_EQUAL] = ACTIONS(196), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(196), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(196), + [anon_sym_RPAREN] = ACTIONS(196), + [sym_bracket_argument] = ACTIONS(196), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, [23] = { - [sym_escape_sequence] = STATE(25), - [sym__escape_encoded] = STATE(30), - [sym_variable_ref] = STATE(25), + [sym_escape_sequence] = STATE(22), + [sym__escape_encoded] = STATE(25), + [sym_variable_ref] = STATE(22), [sym_normal_var] = STATE(29), [sym_env_var] = STATE(29), [sym_cache_var] = STATE(29), - [sym_comment] = STATE(23), [aux_sym_unquoted_argument_repeat1] = STATE(22), [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(23), - [anon_sym_BSLASHr] = ACTIONS(23), - [anon_sym_BSLASHn] = ACTIONS(23), + [anon_sym_BSLASHt] = ACTIONS(21), + [anon_sym_BSLASHr] = ACTIONS(21), + [anon_sym_BSLASHn] = ACTIONS(21), [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(25), - [anon_sym_DOLLARENV] = ACTIONS(27), - [anon_sym_DOLLARCACHE] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(201), - [aux_sym_unquoted_argument_token1] = ACTIONS(33), - [anon_sym_1] = ACTIONS(201), - [anon_sym_ON] = ACTIONS(201), - [anon_sym_YES] = ACTIONS(201), - [anon_sym_TRUE] = ACTIONS(201), - [anon_sym_Y] = ACTIONS(203), - [anon_sym_0] = ACTIONS(201), - [anon_sym_OFF] = ACTIONS(201), - [anon_sym_NO] = ACTIONS(203), - [anon_sym_FALSE] = ACTIONS(201), - [anon_sym_N] = ACTIONS(203), - [anon_sym_IGNORE] = ACTIONS(201), - [anon_sym_NOTFOUND] = ACTIONS(201), - [anon_sym_NOT] = ACTIONS(203), - [anon_sym_AND] = ACTIONS(201), - [anon_sym_OR] = ACTIONS(201), - [anon_sym_COMMAND] = ACTIONS(201), - [anon_sym_POLICY] = ACTIONS(201), - [anon_sym_TARGET] = ACTIONS(201), - [anon_sym_TEST] = ACTIONS(201), - [anon_sym_DEFINED] = ACTIONS(201), - [anon_sym_CACHE] = ACTIONS(201), - [anon_sym_ENV] = ACTIONS(201), - [anon_sym_IN_LIST] = ACTIONS(201), - [anon_sym_EXISTS] = ACTIONS(201), - [anon_sym_IS_NEWER_THAN] = ACTIONS(201), - [anon_sym_IS_DIRECTORY] = ACTIONS(201), - [anon_sym_IS_SYMLINK] = ACTIONS(201), - [anon_sym_IS_ABSOLUTE] = ACTIONS(201), - [anon_sym_MATCHES] = ACTIONS(201), - [anon_sym_LESS] = ACTIONS(203), - [anon_sym_GREATER] = ACTIONS(203), - [anon_sym_EQUAL] = ACTIONS(201), - [anon_sym_LESS_EQUAL] = ACTIONS(201), - [anon_sym_GREATER_EQUAL] = ACTIONS(201), - [anon_sym_STRLESS] = ACTIONS(203), - [anon_sym_STRGREATER] = ACTIONS(203), - [anon_sym_STREQUAL] = ACTIONS(201), - [anon_sym_STRLESS_EQUAL] = ACTIONS(201), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(201), - [anon_sym_VERSION_LESS] = ACTIONS(203), - [anon_sym_VERSION_GREATER] = ACTIONS(203), - [anon_sym_VERSION_EQUAL] = ACTIONS(201), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(201), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [sym_bracket_argument] = ACTIONS(201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), + [anon_sym_DOLLARENV] = ACTIONS(25), + [anon_sym_DOLLARCACHE] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(203), + [aux_sym_unquoted_argument_token1] = ACTIONS(205), + [anon_sym_1] = ACTIONS(203), + [anon_sym_ON] = ACTIONS(203), + [anon_sym_YES] = ACTIONS(203), + [anon_sym_TRUE] = ACTIONS(203), + [anon_sym_Y] = ACTIONS(207), + [anon_sym_0] = ACTIONS(203), + [anon_sym_OFF] = ACTIONS(203), + [anon_sym_NO] = ACTIONS(207), + [anon_sym_FALSE] = ACTIONS(203), + [anon_sym_N] = ACTIONS(207), + [anon_sym_IGNORE] = ACTIONS(203), + [anon_sym_NOTFOUND] = ACTIONS(203), + [anon_sym_NOT] = ACTIONS(207), + [anon_sym_AND] = ACTIONS(203), + [anon_sym_OR] = ACTIONS(203), + [anon_sym_COMMAND] = ACTIONS(203), + [anon_sym_POLICY] = ACTIONS(203), + [anon_sym_TARGET] = ACTIONS(203), + [anon_sym_TEST] = ACTIONS(203), + [anon_sym_DEFINED] = ACTIONS(203), + [anon_sym_CACHE] = ACTIONS(203), + [anon_sym_ENV] = ACTIONS(203), + [anon_sym_IN_LIST] = ACTIONS(203), + [anon_sym_EXISTS] = ACTIONS(203), + [anon_sym_IS_NEWER_THAN] = ACTIONS(203), + [anon_sym_IS_DIRECTORY] = ACTIONS(203), + [anon_sym_IS_SYMLINK] = ACTIONS(203), + [anon_sym_IS_ABSOLUTE] = ACTIONS(203), + [anon_sym_MATCHES] = ACTIONS(203), + [anon_sym_LESS] = ACTIONS(207), + [anon_sym_GREATER] = ACTIONS(207), + [anon_sym_EQUAL] = ACTIONS(203), + [anon_sym_LESS_EQUAL] = ACTIONS(203), + [anon_sym_GREATER_EQUAL] = ACTIONS(203), + [anon_sym_STRLESS] = ACTIONS(207), + [anon_sym_STRGREATER] = ACTIONS(207), + [anon_sym_STREQUAL] = ACTIONS(203), + [anon_sym_STRLESS_EQUAL] = ACTIONS(203), + [anon_sym_STRGREATER_EQUAL] = ACTIONS(203), + [anon_sym_VERSION_LESS] = ACTIONS(207), + [anon_sym_VERSION_GREATER] = ACTIONS(207), + [anon_sym_VERSION_EQUAL] = ACTIONS(203), + [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(203), + [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym_bracket_argument] = ACTIONS(203), [sym_bracket_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(3), 1, + [0] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(24), 1, - sym_comment, - ACTIONS(207), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(205), 45, - 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_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [67] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(25), 1, - sym_comment, + sym_line_comment, ACTIONS(211), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5431,11 +5340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [134] = 4, - ACTIONS(3), 1, + [65] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(26), 1, - sym_comment, + sym_line_comment, ACTIONS(215), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5494,11 +5402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [201] = 4, - ACTIONS(3), 1, + [130] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(27), 1, - sym_comment, + sym_line_comment, ACTIONS(219), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5557,11 +5464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [268] = 4, - ACTIONS(3), 1, + [195] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(28), 1, - sym_comment, + sym_line_comment, ACTIONS(223), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5620,11 +5526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [335] = 4, - ACTIONS(3), 1, + [260] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(29), 1, - sym_comment, + sym_line_comment, ACTIONS(227), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5683,11 +5588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [402] = 4, - ACTIONS(3), 1, + [325] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(30), 1, - sym_comment, + sym_line_comment, ACTIONS(231), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5746,11 +5650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [469] = 4, - ACTIONS(3), 1, + [390] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(31), 1, - sym_comment, + sym_line_comment, ACTIONS(235), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5809,11 +5712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [536] = 4, - ACTIONS(3), 1, + [455] = 3, + ACTIONS(3), 2, sym_bracket_comment, - STATE(32), 1, - sym_comment, + sym_line_comment, ACTIONS(239), 11, aux_sym_unquoted_argument_token1, anon_sym_Y, @@ -5872,234 +5774,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VERSION_LESS_EQUAL, anon_sym_VERSION_GREATER_EQUAL, anon_sym_RPAREN, - [603] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(33), 1, - sym_comment, - ACTIONS(243), 11, + [520] = 15, + ACTIONS(243), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, + anon_sym_DOLLARENV, + ACTIONS(247), 1, + anon_sym_DOLLARCACHE, + ACTIONS(249), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(241), 45, + ACTIONS(253), 1, + anon_sym_RPAREN, + ACTIONS(257), 1, sym_bracket_argument, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(39), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + ACTIONS(255), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [589] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, anon_sym_DOLLARENV, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, + ACTIONS(249), 1, anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [670] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(34), 1, - sym_comment, - ACTIONS(247), 11, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(245), 45, + ACTIONS(257), 1, sym_bracket_argument, + ACTIONS(259), 1, + anon_sym_RPAREN, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + ACTIONS(261), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [658] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, anon_sym_DOLLARENV, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, + ACTIONS(249), 1, anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, + ACTIONS(251), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(257), 1, + sym_bracket_argument, + ACTIONS(263), 1, anon_sym_RPAREN, - [737] = 18, - ACTIONS(3), 1, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(255), 1, + sym_line_comment, + STATE(33), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(265), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [727] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(258), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(261), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(264), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, + ACTIONS(251), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(257), 1, + sym_bracket_argument, ACTIONS(267), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(270), 1, anon_sym_RPAREN, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(37), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(269), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [796] = 15, + ACTIONS(243), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, + anon_sym_DOLLARENV, + ACTIONS(247), 1, + anon_sym_DOLLARCACHE, + ACTIONS(249), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(257), 1, + sym_bracket_argument, + ACTIONS(271), 1, + anon_sym_RPAREN, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(38), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(273), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [865] = 15, + ACTIONS(243), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, + anon_sym_DOLLARENV, + ACTIONS(247), 1, + anon_sym_DOLLARCACHE, + ACTIONS(249), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(257), 1, + sym_bracket_argument, ACTIONS(275), 1, - sym_bracket_argument, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(249), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(35), 2, - sym_comment, - aux_sym_message_command_repeat1, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(252), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(272), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [812] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(292), 1, anon_sym_RPAREN, - ACTIONS(296), 1, - sym_bracket_argument, - STATE(35), 1, - aux_sym_message_command_repeat1, - STATE(36), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, + STATE(67), 1, sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(261), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6113,51 +6098,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [889] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [934] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, - ACTIONS(290), 1, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, + ACTIONS(257), 1, sym_bracket_argument, - ACTIONS(298), 1, + ACTIONS(277), 1, anon_sym_RPAREN, - STATE(37), 1, - sym_comment, - STATE(39), 1, - aux_sym_message_command_repeat1, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, + STATE(67), 1, sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(261), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6171,51 +6152,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [966] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [1003] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, - ACTIONS(290), 1, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, + ACTIONS(257), 1, sym_bracket_argument, - ACTIONS(300), 1, + ACTIONS(279), 1, anon_sym_RPAREN, - STATE(35), 1, - aux_sym_message_command_repeat1, - STATE(38), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, + STATE(67), 1, sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(261), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6229,283 +6206,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [1043] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [1072] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, - ACTIONS(290), 1, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, + ACTIONS(257), 1, sym_bracket_argument, + ACTIONS(281), 1, + anon_sym_RPAREN, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(261), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [1141] = 15, + ACTIONS(243), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(245), 1, + anon_sym_DOLLARENV, + ACTIONS(247), 1, + anon_sym_DOLLARCACHE, + ACTIONS(249), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(257), 1, + sym_bracket_argument, + ACTIONS(283), 1, + anon_sym_RPAREN, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(40), 2, + sym_argument, + aux_sym_message_command_repeat1, + STATE(69), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(45), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(285), 13, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [1210] = 15, + ACTIONS(290), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(293), 1, + anon_sym_DOLLARENV, + ACTIONS(296), 1, + anon_sym_DOLLARCACHE, + ACTIONS(299), 1, + anon_sym_DQUOTE, ACTIONS(302), 1, - anon_sym_RPAREN, - STATE(35), 1, - aux_sym_message_command_repeat1, - STATE(39), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1120] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, - ACTIONS(304), 1, + ACTIONS(305), 1, anon_sym_RPAREN, - STATE(40), 1, - sym_comment, - STATE(41), 1, - aux_sym_message_command_repeat1, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1197] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, - ACTIONS(306), 1, - anon_sym_RPAREN, - STATE(35), 1, - aux_sym_message_command_repeat1, - STATE(41), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1274] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, - ACTIONS(308), 1, - anon_sym_RPAREN, - STATE(42), 1, - sym_comment, - STATE(44), 1, - aux_sym_message_command_repeat1, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1351] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, ACTIONS(310), 1, - anon_sym_RPAREN, - STATE(35), 1, + sym_bracket_argument, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, aux_sym_message_command_repeat1, - STATE(43), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(287), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(307), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6519,51 +6368,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [1428] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [1279] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, - ACTIONS(290), 1, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, + ACTIONS(257), 1, sym_bracket_argument, - ACTIONS(312), 1, + ACTIONS(313), 1, anon_sym_RPAREN, - STATE(35), 1, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(42), 2, + sym_argument, aux_sym_message_command_repeat1, - STATE(44), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(261), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6577,51 +6422,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [1505] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [1348] = 15, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, + ACTIONS(249), 1, anon_sym_DQUOTE, - ACTIONS(290), 1, + ACTIONS(251), 1, aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, + ACTIONS(257), 1, sym_bracket_argument, - ACTIONS(314), 1, + ACTIONS(315), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(43), 2, + sym_argument, aux_sym_message_command_repeat1, - STATE(45), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, + STATE(69), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(75), 2, + STATE(45), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, + aux_sym_unquoted_argument_repeat1, STATE(66), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(294), 13, + ACTIONS(241), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(317), 13, anon_sym_FATAL_ERROR, anon_sym_SEND_ERROR, anon_sym_WARNING, @@ -6635,1074 +6476,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [1582] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, + [1417] = 10, + ACTIONS(243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, + ACTIONS(245), 1, anon_sym_DOLLARENV, - ACTIONS(286), 1, + ACTIONS(247), 1, anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, - ACTIONS(316), 1, - anon_sym_RPAREN, - STATE(38), 1, - aux_sym_message_command_repeat1, - STATE(46), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1659] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(296), 1, - sym_bracket_argument, - ACTIONS(318), 1, - anon_sym_RPAREN, - STATE(43), 1, - aux_sym_message_command_repeat1, - STATE(47), 1, - sym_comment, - STATE(48), 1, - aux_sym_unquoted_argument_repeat1, - STATE(69), 1, - sym_argument, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(73), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(294), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1736] = 13, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(284), 1, - anon_sym_DOLLARENV, - ACTIONS(286), 1, - anon_sym_DOLLARCACHE, - ACTIONS(290), 1, - aux_sym_unquoted_argument_token1, - STATE(48), 1, - sym_comment, - STATE(49), 1, - aux_sym_unquoted_argument_repeat1, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(278), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(280), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(201), 16, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1797] = 12, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(329), 1, - anon_sym_DOLLARENV, - ACTIONS(332), 1, - anon_sym_DOLLARCACHE, - ACTIONS(335), 1, - aux_sym_unquoted_argument_token1, - STATE(76), 1, - sym__escape_encoded, - ACTIONS(320), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(49), 2, - sym_comment, - aux_sym_unquoted_argument_repeat1, - STATE(75), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(323), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(194), 16, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1856] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(342), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(344), 1, - anon_sym_DOLLARENV, - ACTIONS(346), 1, - anon_sym_DOLLARCACHE, - ACTIONS(348), 1, - anon_sym_DQUOTE, - ACTIONS(350), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(352), 1, - anon_sym_RPAREN, - ACTIONS(356), 1, - sym_bracket_argument, - STATE(50), 1, - sym_comment, - STATE(51), 1, - aux_sym_foreach_command_repeat1, - STATE(77), 1, - aux_sym_unquoted_argument_repeat1, - STATE(187), 1, - sym_argument, - STATE(188), 1, - sym__escape_encoded, - ACTIONS(338), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(198), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(200), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(340), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(197), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(354), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [1925] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(342), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(344), 1, - anon_sym_DOLLARENV, - ACTIONS(346), 1, - anon_sym_DOLLARCACHE, - ACTIONS(348), 1, - anon_sym_DQUOTE, - ACTIONS(350), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(356), 1, - sym_bracket_argument, - ACTIONS(358), 1, - anon_sym_RPAREN, - STATE(51), 1, - sym_comment, - STATE(52), 1, - aux_sym_foreach_command_repeat1, - STATE(77), 1, - aux_sym_unquoted_argument_repeat1, - STATE(187), 1, - sym_argument, - STATE(188), 1, - sym__escape_encoded, - ACTIONS(338), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(198), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(200), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(340), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(197), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(354), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [1994] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(366), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(369), 1, - anon_sym_DOLLARENV, - ACTIONS(372), 1, - anon_sym_DOLLARCACHE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(378), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(381), 1, - anon_sym_RPAREN, - ACTIONS(386), 1, - sym_bracket_argument, - STATE(77), 1, - aux_sym_unquoted_argument_repeat1, - STATE(187), 1, - sym_argument, - STATE(188), 1, - sym__escape_encoded, - ACTIONS(360), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(52), 2, - sym_comment, - aux_sym_foreach_command_repeat1, - STATE(198), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(200), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(363), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(197), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(383), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [2061] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(393), 1, - sym_endif, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - STATE(53), 1, - sym_comment, - STATE(57), 1, - sym_if_command, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(315), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2133] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - sym_endif, - STATE(54), 1, - sym_comment, - STATE(57), 1, - sym_if_command, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(251), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2205] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(401), 1, - sym_endif, - STATE(55), 1, - sym_comment, - STATE(57), 1, - sym_if_command, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(406), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2277] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(403), 1, - sym_endif, - STATE(56), 1, - sym_comment, - STATE(57), 1, - sym_if_command, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(414), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2349] = 20, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - sym_endif, - STATE(54), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(244), 1, - sym_endif_command, - STATE(57), 2, - sym_if_command, - sym_comment, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2419] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(405), 1, - sym_endif, - STATE(57), 1, - sym_if_command, - STATE(58), 1, - sym_comment, - STATE(64), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(339), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2491] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(403), 1, - sym_endif, - STATE(56), 1, - aux_sym_if_condition_repeat1, - STATE(57), 1, - sym_if_command, - STATE(59), 1, - sym_comment, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(383), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2563] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(407), 1, - sym_endif, - STATE(57), 1, - sym_if_command, - STATE(60), 1, - sym_comment, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(287), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2635] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(401), 1, - sym_endif, - STATE(55), 1, - aux_sym_if_condition_repeat1, - STATE(57), 1, - sym_if_command, - STATE(61), 1, - sym_comment, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(377), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2707] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(407), 1, - sym_endif, - STATE(57), 1, - sym_if_command, - STATE(60), 1, - aux_sym_if_condition_repeat1, - STATE(62), 1, - sym_comment, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(355), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2779] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(393), 1, - sym_endif, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - STATE(53), 1, - aux_sym_if_condition_repeat1, - STATE(57), 1, - sym_if_command, - STATE(63), 1, - sym_comment, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(308), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2851] = 21, - ACTIONS(3), 1, - sym_bracket_comment, - 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(389), 1, - sym_elseif, - ACTIONS(391), 1, - sym_else, - ACTIONS(395), 1, - sym_message, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(405), 1, - sym_endif, - STATE(57), 1, - sym_if_command, - STATE(64), 1, - sym_comment, - STATE(65), 1, - aux_sym_if_condition_repeat1, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(332), 1, - sym_endif_command, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2923] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(409), 1, - sym_if, - ACTIONS(412), 1, - sym_elseif, - ACTIONS(415), 1, - sym_else, - ACTIONS(418), 1, - sym_endif, - ACTIONS(420), 1, - sym_foreach, - ACTIONS(423), 1, - sym_while, - ACTIONS(426), 1, - sym_function, - ACTIONS(429), 1, - sym_macro, - ACTIONS(432), 1, - sym_message, - ACTIONS(435), 1, - sym_identifier, - STATE(57), 1, - sym_if_command, - STATE(80), 1, - sym_macro_command, - STATE(136), 1, - sym_foreach_command, - STATE(143), 1, - sym_while_command, - STATE(144), 1, - sym_function_command, - STATE(65), 2, - sym_comment, - aux_sym_if_condition_repeat1, - STATE(230), 3, - sym_elseif_command, - sym_else_command, - sym__command_invocation, - STATE(243), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [2990] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(227), 1, - aux_sym_unquoted_argument_token1, - STATE(66), 1, - sym_comment, - ACTIONS(225), 24, - 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, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3026] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(219), 1, + ACTIONS(319), 1, aux_sym_unquoted_argument_token1, STATE(67), 1, - sym_comment, - ACTIONS(217), 24, - sym_bracket_argument, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(46), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(241), 5, 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(203), 16, + sym_bracket_argument, anon_sym_DQUOTE, anon_sym_RPAREN, anon_sym_FATAL_ERROR, @@ -7718,23 +6521,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [3062] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(247), 1, + [1472] = 10, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLARENV, + ACTIONS(330), 1, + anon_sym_DOLLARCACHE, + ACTIONS(333), 1, aux_sym_unquoted_argument_token1, - STATE(68), 1, - sym_comment, - ACTIONS(245), 24, - sym_bracket_argument, + STATE(67), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(46), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(66), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(321), 5, 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(196), 16, + sym_bracket_argument, anon_sym_DQUOTE, anon_sym_RPAREN, anon_sym_FATAL_ERROR, @@ -7750,173 +6566,772 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [3098] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(440), 1, + [1527] = 15, + ACTIONS(338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(340), 1, + anon_sym_DOLLARENV, + ACTIONS(342), 1, + anon_sym_DOLLARCACHE, + ACTIONS(344), 1, + anon_sym_DQUOTE, + ACTIONS(346), 1, aux_sym_unquoted_argument_token1, - STATE(69), 1, - sym_comment, - ACTIONS(438), 24, + ACTIONS(348), 1, + anon_sym_RPAREN, + ACTIONS(352), 1, sym_bracket_argument, + STATE(181), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(48), 2, + sym_argument, + aux_sym_foreach_command_repeat1, + STATE(182), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(72), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(187), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(336), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + ACTIONS(350), 5, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [1588] = 15, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(360), 1, anon_sym_DOLLARENV, + ACTIONS(363), 1, anon_sym_DOLLARCACHE, + ACTIONS(366), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3134] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(215), 1, + ACTIONS(369), 1, aux_sym_unquoted_argument_token1, - STATE(70), 1, - sym_comment, - ACTIONS(213), 24, + ACTIONS(372), 1, + anon_sym_RPAREN, + ACTIONS(377), 1, sym_bracket_argument, + STATE(181), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(48), 2, + sym_argument, + aux_sym_foreach_command_repeat1, + STATE(182), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(72), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(187), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(354), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + ACTIONS(374), 5, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [1649] = 15, + ACTIONS(338), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(340), 1, anon_sym_DOLLARENV, + ACTIONS(342), 1, anon_sym_DOLLARCACHE, + ACTIONS(344), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3170] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(239), 1, + ACTIONS(346), 1, aux_sym_unquoted_argument_token1, - STATE(71), 1, - sym_comment, - ACTIONS(237), 24, + ACTIONS(352), 1, sym_bracket_argument, + ACTIONS(380), 1, + anon_sym_RPAREN, + STATE(181), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(47), 2, + sym_argument, + aux_sym_foreach_command_repeat1, + STATE(182), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(72), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(187), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(336), 5, 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, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3206] = 4, - ACTIONS(3), 1, + ACTIONS(382), 5, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [1710] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(388), 1, + sym_endif, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(273), 1, + sym_endif_command, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(243), 1, - aux_sym_unquoted_argument_token1, - STATE(72), 1, - sym_comment, - ACTIONS(241), 24, - 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, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3242] = 4, - ACTIONS(3), 1, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [1776] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(394), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(368), 1, + sym_endif_command, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - STATE(73), 1, - sym_comment, - ACTIONS(233), 24, - 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, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [3278] = 4, - ACTIONS(3), 1, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [1842] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(396), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(242), 1, + sym_endif_command, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(56), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [1908] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(398), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(349), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(59), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [1974] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(388), 1, + sym_endif, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(264), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(50), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2040] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(400), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(343), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2106] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(396), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(233), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2172] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(394), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(359), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(51), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2238] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(402), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(302), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2304] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(398), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(337), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2370] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(400), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(307), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(55), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2436] = 18, + 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(384), 1, + sym_elseif, + ACTIONS(386), 1, + sym_else, + ACTIONS(390), 1, + sym_message, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(402), 1, + sym_endif, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + STATE(311), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(58), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2502] = 17, + ACTIONS(404), 1, + sym_if, + ACTIONS(407), 1, + sym_elseif, + ACTIONS(410), 1, + sym_else, + ACTIONS(413), 1, + sym_endif, + ACTIONS(415), 1, + sym_foreach, + ACTIONS(418), 1, + sym_while, + ACTIONS(421), 1, + sym_function, + ACTIONS(424), 1, + sym_macro, + ACTIONS(427), 1, + sym_message, + ACTIONS(430), 1, + sym_identifier, + STATE(52), 1, + sym_if_command, + STATE(93), 1, + sym_foreach_command, + STATE(94), 1, + sym_while_command, + STATE(95), 1, + sym_function_command, + STATE(106), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(62), 11, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [2565] = 3, ACTIONS(223), 1, aux_sym_unquoted_argument_token1, - STATE(74), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(221), 24, sym_bracket_argument, sym__escape_identity, @@ -7942,13 +7357,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [3314] = 4, - ACTIONS(3), 1, + [2599] = 3, + ACTIONS(219), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + ACTIONS(217), 24, + 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, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [2633] = 3, ACTIONS(211), 1, aux_sym_unquoted_argument_token1, - STATE(75), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(209), 24, sym_bracket_argument, sym__escape_identity, @@ -7974,13 +7419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [3350] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [2667] = 3, ACTIONS(231), 1, aux_sym_unquoted_argument_token1, - STATE(76), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(229), 24, sym_bracket_argument, sym__escape_identity, @@ -8006,77 +7450,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CHECK_START, anon_sym_CHECK_PASS, anon_sym_CHECK_FAIL, - [3386] = 13, - ACTIONS(3), 1, + [2701] = 3, + ACTIONS(215), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + ACTIONS(213), 24, + 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, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [2735] = 3, + ACTIONS(227), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(225), 24, + 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, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [2769] = 3, + ACTIONS(239), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(237), 24, + 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, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [2803] = 3, + ACTIONS(235), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(233), 24, + 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, + anon_sym_FATAL_ERROR, + anon_sym_SEND_ERROR, + anon_sym_WARNING, + anon_sym_AUTHOR_WARNING, + anon_sym_DEPRECATION, + anon_sym_NOTICE, + anon_sym_STATUS, + anon_sym_VERBOSE, + anon_sym_DEBUG, + anon_sym_TRACE, + anon_sym_CHECK_START, + anon_sym_CHECK_PASS, + anon_sym_CHECK_FAIL, + [2837] = 10, + ACTIONS(436), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(439), 1, + anon_sym_DOLLARENV, + ACTIONS(442), 1, + anon_sym_DOLLARCACHE, + ACTIONS(445), 1, + aux_sym_unquoted_argument_token1, + STATE(181), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(71), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(187), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(433), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(196), 8, + sym_bracket_argument, + anon_sym_DQUOTE, + anon_sym_RPAREN, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [2884] = 10, + ACTIONS(338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(340), 1, + anon_sym_DOLLARENV, ACTIONS(342), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(344), 1, - anon_sym_DOLLARENV, - ACTIONS(346), 1, anon_sym_DOLLARCACHE, - ACTIONS(350), 1, - aux_sym_unquoted_argument_token1, - STATE(77), 1, - sym_comment, - STATE(78), 1, - aux_sym_unquoted_argument_repeat1, - STATE(188), 1, - sym__escape_encoded, - ACTIONS(338), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(200), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(340), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(197), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(201), 8, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [3439] = 12, - ACTIONS(3), 1, - sym_bracket_comment, ACTIONS(448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(451), 1, - anon_sym_DOLLARENV, - ACTIONS(454), 1, - anon_sym_DOLLARCACHE, - ACTIONS(457), 1, aux_sym_unquoted_argument_token1, - STATE(188), 1, + STATE(181), 1, sym__escape_encoded, - ACTIONS(442), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(78), 2, - sym_comment, - aux_sym_unquoted_argument_repeat1, - STATE(200), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(71), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(445), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(197), 3, + aux_sym_unquoted_argument_repeat1, + STATE(187), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(194), 8, + ACTIONS(336), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + ACTIONS(203), 8, sym_bracket_argument, anon_sym_DQUOTE, anon_sym_RPAREN, @@ -8085,231 +7648,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ZIP_LISTS, anon_sym_LISTS, anon_sym_ITEMS, - [3490] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(460), 1, - sym_endmacro, - ACTIONS(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - STATE(63), 1, - sym_if_command, - STATE(79), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(343), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [3554] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(466), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(80), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(166), 1, - aux_sym_source_file_repeat1, - STATE(248), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [3618] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + [2931] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, + ACTIONS(462), 1, + anon_sym_RPAREN, + ACTIONS(464), 1, + sym_bracket_argument, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(104), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2985] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(466), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3039] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(468), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3093] = 16, + 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(470), 1, + sym_endforeach, + ACTIONS(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(344), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3151] = 16, + 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(476), 1, + sym_endwhile, + ACTIONS(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(312), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(129), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3209] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, ACTIONS(482), 1, anon_sym_RPAREN, - ACTIONS(484), 1, - sym_bracket_argument, - STATE(81), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [3680] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(486), 1, - anon_sym_RPAREN, - STATE(82), 1, - sym_comment, - STATE(108), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, + ACTIONS(450), 5, sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [3742] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(488), 1, - anon_sym_RPAREN, - STATE(83), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [3804] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + [3263] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8320,31 +7903,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(484), 1, sym_endmacro, - STATE(63), 1, + ACTIONS(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + STATE(54), 1, sym_if_command, - STATE(84), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, + STATE(89), 1, sym_macro_command, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(291), 1, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(277), 1, sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8352,53 +7932,49 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [3868] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3321] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, - ACTIONS(492), 1, + ACTIONS(490), 1, anon_sym_RPAREN, - STATE(85), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [3930] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3375] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8409,76 +7985,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(494), 1, + ACTIONS(492), 1, sym_endfunction, + ACTIONS(494), 1, + sym_message, ACTIONS(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - STATE(62), 1, - sym_if_command, - STATE(86), 1, - sym_comment, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(290), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [3994] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(500), 1, - sym_endwhile, - ACTIONS(502), 1, - sym_message, - ACTIONS(504), 1, sym_identifier, STATE(61), 1, sym_if_command, - STATE(87), 1, - sym_comment, - STATE(115), 1, + STATE(120), 1, sym_macro_command, - STATE(116), 1, + STATE(121), 1, sym_function_command, - STATE(117), 1, + STATE(122), 1, sym_while_command, - STATE(119), 1, + STATE(123), 1, sym_foreach_command, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(289), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, + STATE(276), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8486,53 +8014,293 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [4058] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3433] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(498), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3487] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(500), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(275), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3545] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(502), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(274), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3603] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(504), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3657] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, sym_bracket_argument, ACTIONS(506), 1, anon_sym_RPAREN, - STATE(88), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(97), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [4120] = 19, - ACTIONS(3), 1, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3711] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(508), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(78), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3765] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(510), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(112), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3819] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8543,31 +8311,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(508), 1, - sym_endforeach, - ACTIONS(510), 1, + ACTIONS(484), 1, + sym_endmacro, + ACTIONS(486), 1, sym_message, - ACTIONS(512), 1, + ACTIONS(488), 1, sym_identifier, - STATE(58), 1, + STATE(54), 1, sym_if_command, STATE(89), 1, - sym_comment, - STATE(151), 1, sym_macro_command, - STATE(152), 1, + STATE(91), 1, sym_function_command, - STATE(153), 1, + STATE(92), 1, sym_while_command, - STATE(154), 1, + STATE(96), 1, sym_foreach_command, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(288), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, + STATE(268), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(79), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8575,185 +8340,49 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [4184] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3877] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, - ACTIONS(514), 1, + ACTIONS(512), 1, anon_sym_RPAREN, - STATE(81), 1, - aux_sym_function_command_repeat1, - STATE(90), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(114), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [4246] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(516), 1, - anon_sym_RPAREN, - STATE(91), 1, - sym_comment, - STATE(112), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, + ACTIONS(450), 5, sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [4308] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(518), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_comment, - STATE(118), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [4370] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(520), 1, - anon_sym_RPAREN, - STATE(93), 1, - sym_comment, - STATE(120), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [4432] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + [3931] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8764,31 +8393,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(462), 1, + ACTIONS(492), 1, + sym_endfunction, + ACTIONS(494), 1, sym_message, - ACTIONS(464), 1, + ACTIONS(496), 1, sym_identifier, - ACTIONS(490), 1, - sym_endmacro, - STATE(63), 1, + STATE(61), 1, sym_if_command, - STATE(84), 1, - aux_sym_source_file_repeat1, - STATE(94), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, + STATE(120), 1, sym_macro_command, - STATE(344), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(267), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(81), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8796,9 +8422,135 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [4496] = 18, - ACTIONS(3), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [3989] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(500), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(266), 1, + sym_endwhile_command, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(83), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4047] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(514), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(241), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4105] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(516), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(240), 1, + sym_endwhile_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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4163] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8810,74 +8562,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 1, sym_macro, ACTIONS(494), 1, - sym_endfunction, + sym_message, ACTIONS(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - STATE(62), 1, - sym_if_command, - STATE(86), 1, - aux_sym_source_file_repeat1, - STATE(94), 1, - sym_macro_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(280), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(95), 2, - sym_function_command, - sym_comment, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [4558] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(500), 1, - sym_endwhile, - ACTIONS(502), 1, - sym_message, - ACTIONS(504), 1, sym_identifier, + ACTIONS(518), 1, + sym_endfunction, STATE(61), 1, sym_if_command, - STATE(87), 1, - aux_sym_source_file_repeat1, - STATE(96), 1, - sym_comment, - STATE(115), 1, + STATE(120), 1, sym_macro_command, - STATE(116), 1, + STATE(121), 1, sym_function_command, - STATE(117), 1, + STATE(122), 1, sym_while_command, - STATE(119), 1, + STATE(123), 1, sym_foreach_command, - STATE(340), 1, - sym__command_invocation, - STATE(351), 1, - sym_endwhile_command, - STATE(375), 7, + STATE(239), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(125), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8885,9 +8590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [4622] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4221] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8898,31 +8603,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(508), 1, - sym_endforeach, - ACTIONS(510), 1, + ACTIONS(472), 1, sym_message, - ACTIONS(512), 1, + ACTIONS(474), 1, sym_identifier, - STATE(58), 1, + ACTIONS(502), 1, + sym_endforeach, + STATE(57), 1, sym_if_command, - STATE(89), 1, - aux_sym_source_file_repeat1, - STATE(97), 1, - sym_comment, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, + STATE(147), 1, sym_foreach_command, - STATE(354), 1, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(265), 1, sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(84), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -8930,941 +8632,371 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [4686] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4279] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, - ACTIONS(522), 1, + ACTIONS(520), 1, anon_sym_RPAREN, - STATE(98), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [4748] = 18, - ACTIONS(3), 1, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4333] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(522), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(313), 1, + sym_endfunction_command, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(472), 1, + sym_line_comment, + STATE(150), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4391] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, ACTIONS(524), 1, anon_sym_RPAREN, - STATE(99), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [4810] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4445] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, ACTIONS(526), 1, anon_sym_RPAREN, - STATE(98), 1, - aux_sym_function_command_repeat1, - STATE(100), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [4872] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4499] = 14, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(534), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(537), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(528), 1, - anon_sym_RPAREN, - STATE(101), 1, - sym_comment, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [4934] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(530), 1, - anon_sym_RPAREN, - STATE(99), 1, - aux_sym_function_command_repeat1, - STATE(102), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [4996] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(532), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(103), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(319), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5060] = 17, - ACTIONS(3), 1, - sym_bracket_comment, ACTIONS(540), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(543), 1, - anon_sym_DOLLARENV, - ACTIONS(546), 1, - anon_sym_DOLLARCACHE, - ACTIONS(549), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(543), 1, aux_sym_unquoted_argument_token1, + ACTIONS(546), 1, + anon_sym_RPAREN, + ACTIONS(548), 1, + sym_bracket_argument, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(528), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4553] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(551), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(99), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4607] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(553), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(100), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4661] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, ACTIONS(555), 1, anon_sym_RPAREN, - ACTIONS(557), 1, - sym_bracket_argument, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(534), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(104), 2, - sym_comment, aux_sym_function_command_repeat1, - STATE(204), 2, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(537), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [5120] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4715] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(560), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(105), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [5182] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(562), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(106), 1, - sym_comment, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(155), 1, - aux_sym_source_file_repeat1, - STATE(366), 1, - sym__command_invocation, - STATE(388), 1, - sym_endforeach_command, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5246] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(564), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(107), 1, - sym_comment, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(141), 1, - aux_sym_source_file_repeat1, - STATE(340), 1, - sym__command_invocation, - STATE(389), 1, - sym_endwhile_command, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5310] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(566), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(108), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [5372] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(568), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(109), 1, - sym_comment, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(376), 1, - sym__command_invocation, - STATE(395), 1, - sym_endfunction_command, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5436] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(570), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(110), 1, - sym_comment, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(340), 1, - sym__command_invocation, - STATE(402), 1, - sym_endwhile_command, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5500] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(572), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(111), 1, - sym_comment, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(366), 1, - sym__command_invocation, - STATE(405), 1, - sym_endforeach_command, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5564] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(574), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(112), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [5626] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(576), 1, - anon_sym_RPAREN, - STATE(105), 1, - aux_sym_function_command_repeat1, - STATE(113), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [5688] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(578), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(114), 1, - sym_comment, - STATE(134), 1, - aux_sym_source_file_repeat1, - STATE(376), 1, - sym__command_invocation, - STATE(392), 1, - sym_endfunction_command, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5752] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(460), 1, - sym_endmacro, - ACTIONS(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - STATE(63), 1, - sym_if_command, - STATE(79), 1, - aux_sym_source_file_repeat1, - STATE(115), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(356), 1, - sym__command_invocation, - STATE(404), 1, - sym_endmacro_command, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5816] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(568), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(109), 1, - aux_sym_source_file_repeat1, - STATE(116), 1, - sym_comment, - STATE(376), 1, - sym__command_invocation, - STATE(403), 1, - sym_endfunction_command, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5880] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(570), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(110), 1, - aux_sym_source_file_repeat1, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(119), 1, - sym_foreach_command, - STATE(340), 1, - sym__command_invocation, - STATE(382), 1, - sym_endwhile_command, - STATE(117), 2, - sym_while_command, - sym_comment, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [5942] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, - ACTIONS(580), 1, + ACTIONS(557), 1, anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(118), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [6004] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4769] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9875,31 +9007,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(510), 1, + ACTIONS(486), 1, sym_message, - ACTIONS(512), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(572), 1, - sym_endforeach, - STATE(58), 1, + ACTIONS(559), 1, + sym_endmacro, + STATE(54), 1, sym_if_command, - STATE(111), 1, - aux_sym_source_file_repeat1, - STATE(119), 1, - sym_comment, - STATE(151), 1, + STATE(89), 1, sym_macro_command, - STATE(152), 1, + STATE(91), 1, sym_function_command, - STATE(153), 1, + STATE(92), 1, sym_while_command, - STATE(154), 1, + STATE(96), 1, sym_foreach_command, - STATE(366), 1, - sym__command_invocation, - STATE(378), 1, - sym_endforeach_command, - STATE(341), 7, + STATE(238), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(126), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -9907,230 +9036,175 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [6068] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4827] = 14, + ACTIONS(452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, + ACTIONS(454), 1, anon_sym_DOLLARENV, - ACTIONS(476), 1, + ACTIONS(456), 1, anon_sym_DOLLARCACHE, - ACTIONS(478), 1, + ACTIONS(458), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, + ACTIONS(460), 1, aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, + ACTIONS(464), 1, sym_bracket_argument, - ACTIONS(582), 1, + ACTIONS(561), 1, anon_sym_RPAREN, - STATE(104), 1, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4881] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(563), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(348), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(132), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4939] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(565), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(298), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4997] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(567), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, STATE(120), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6130] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(584), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, + sym_macro_command, STATE(121), 1, - sym_comment, - STATE(129), 1, - aux_sym_source_file_repeat1, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(356), 1, - sym__command_invocation, - STATE(394), 1, - sym_endmacro_command, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [6194] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(586), 1, - anon_sym_RPAREN, STATE(122), 1, - sym_comment, - STATE(133), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6256] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(588), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, + sym_while_command, STATE(123), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6318] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(590), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(124), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6380] = 19, - ACTIONS(3), 1, + sym_foreach_command, + STATE(299), 1, + sym_endfunction_command, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(165), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5055] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10141,394 +9215,78 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(496), 1, + ACTIONS(478), 1, sym_message, - ACTIONS(498), 1, + ACTIONS(480), 1, sym_identifier, - ACTIONS(592), 1, - sym_endfunction, - STATE(62), 1, + ACTIONS(569), 1, + sym_endwhile, + STATE(53), 1, sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, + STATE(108), 1, sym_foreach_command, - STATE(125), 1, - sym_comment, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(318), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [6444] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(594), 1, - anon_sym_RPAREN, - STATE(83), 1, - aux_sym_function_command_repeat1, - STATE(126), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6506] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(596), 1, - anon_sym_RPAREN, - STATE(123), 1, - aux_sym_function_command_repeat1, + STATE(117), 1, + sym_while_command, STATE(127), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6568] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(598), 1, - anon_sym_RPAREN, - STATE(124), 1, - aux_sym_function_command_repeat1, + sym_function_command, STATE(128), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6630] = 19, - ACTIONS(3), 1, + sym_macro_command, + STATE(300), 1, + sym_endwhile_command, + ACTIONS(3), 2, sym_bracket_comment, - 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(462), 1, - sym_message, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5113] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, ACTIONS(464), 1, - sym_identifier, - ACTIONS(584), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(129), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(356), 1, - sym__command_invocation, - STATE(410), 1, - sym_endmacro_command, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [6694] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, sym_bracket_argument, - ACTIONS(600), 1, + ACTIONS(571), 1, anon_sym_RPAREN, - STATE(85), 1, - aux_sym_function_command_repeat1, - STATE(130), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, + STATE(193), 1, sym__escape_encoded, - STATE(210), 1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, + aux_sym_function_command_repeat1, + STATE(196), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(211), 2, + STATE(174), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, sym_normal_var, sym_env_var, sym_cache_var, - [6756] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(602), 1, - anon_sym_RPAREN, - STATE(131), 1, - sym_comment, - STATE(135), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, + ACTIONS(450), 5, sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6818] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(604), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(132), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6880] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(606), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(133), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [6942] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + [5167] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10539,657 +9297,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(578), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(134), 1, - sym_comment, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(376), 1, - sym__command_invocation, - STATE(411), 1, - sym_endfunction_command, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7006] = 18, - ACTIONS(3), 1, - sym_bracket_comment, ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(608), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(135), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [7068] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, sym_message, - ACTIONS(512), 1, + ACTIONS(474), 1, sym_identifier, - ACTIONS(610), 1, + ACTIONS(573), 1, sym_endforeach, - STATE(58), 1, + STATE(57), 1, sym_if_command, - STATE(136), 1, - sym_comment, - STATE(148), 1, - aux_sym_source_file_repeat1, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(245), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7132] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(612), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(137), 1, - sym_comment, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(356), 1, - sym__command_invocation, - STATE(370), 1, - sym_endmacro_command, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7196] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(614), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(138), 1, - sym_comment, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(283), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7260] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(616), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(139), 1, - sym_comment, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(284), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7324] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(618), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(140), 1, - sym_comment, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(293), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7388] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(564), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(141), 1, - sym_comment, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(340), 1, - sym__command_invocation, - STATE(412), 1, - sym_endwhile_command, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7452] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(620), 1, - anon_sym_RPAREN, - STATE(132), 1, - aux_sym_function_command_repeat1, - STATE(142), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [7514] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(622), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(143), 1, - sym_comment, - STATE(157), 1, - aux_sym_source_file_repeat1, - STATE(246), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7578] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(624), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(144), 1, - sym_comment, - STATE(163), 1, - aux_sym_source_file_repeat1, - STATE(247), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7642] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(626), 1, - anon_sym_RPAREN, - STATE(88), 1, - aux_sym_function_command_repeat1, - STATE(145), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [7704] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(628), 1, - anon_sym_RPAREN, - STATE(146), 1, - sym_comment, - STATE(165), 1, - aux_sym_function_command_repeat1, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [7766] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(630), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, STATE(147), 1, - sym_comment, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(317), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [7830] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(610), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, + sym_foreach_command, STATE(148), 1, - sym_comment, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(252), 1, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(301), 1, sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(162), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -11197,9 +9326,49 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [7894] = 19, - ACTIONS(3), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5225] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(575), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5279] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11210,31 +9379,318 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(510), 1, + ACTIONS(486), 1, sym_message, - ACTIONS(512), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(632), 1, - sym_endforeach, - STATE(58), 1, + ACTIONS(577), 1, + sym_endmacro, + STATE(54), 1, sym_if_command, - STATE(149), 1, - sym_comment, - STATE(151), 1, + STATE(89), 1, sym_macro_command, - STATE(152), 1, + STATE(91), 1, sym_function_command, - STATE(153), 1, + STATE(92), 1, sym_while_command, - STATE(154), 1, + STATE(96), 1, sym_foreach_command, - STATE(167), 1, + STATE(314), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(159), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, aux_sym_source_file_repeat1, + [5337] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(579), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(107), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5391] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(581), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(342), 1, + sym_endwhile_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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5449] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(583), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(135), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [5503] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(514), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(236), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5561] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(565), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(305), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(109), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5619] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(567), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(306), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(110), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5677] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(569), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, STATE(309), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(111), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -11242,9 +9698,9 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [7958] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5735] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11255,31 +9711,70 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(502), 1, + ACTIONS(472), 1, sym_message, - ACTIONS(504), 1, + ACTIONS(474), 1, sym_identifier, - ACTIONS(630), 1, - sym_endwhile, - STATE(61), 1, + ACTIONS(573), 1, + sym_endforeach, + STATE(57), 1, sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(310), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(113), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5793] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(516), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, STATE(117), 1, sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(147), 1, - aux_sym_source_file_repeat1, - STATE(150), 1, - sym_comment, - STATE(310), 1, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(223), 1, sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -11287,9 +9782,9 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [8022] = 19, - ACTIONS(3), 1, - sym_bracket_comment, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5851] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11300,31 +9795,402 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(462), 1, + ACTIONS(494), 1, sym_message, - ACTIONS(464), 1, + ACTIONS(496), 1, sym_identifier, - ACTIONS(612), 1, - sym_endmacro, - STATE(63), 1, + ACTIONS(518), 1, + sym_endfunction, + STATE(61), 1, sym_if_command, - STATE(137), 1, - aux_sym_source_file_repeat1, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(151), 1, - sym_comment, - STATE(158), 1, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, sym_function_command, - STATE(162), 1, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(205), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5909] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(559), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(228), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5967] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(585), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(341), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6025] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(587), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(340), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6083] = 16, + 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(476), 1, + sym_endwhile, + ACTIONS(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(345), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6141] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(589), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(142), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6195] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(591), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6249] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(563), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(336), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6307] = 16, + 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(470), 1, + sym_endforeach, + ACTIONS(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(308), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(76), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6365] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(581), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, sym_macro_command, STATE(335), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -11332,54 +10198,49 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [8086] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(614), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(138), 1, + sym__command_invocation, aux_sym_source_file_repeat1, - STATE(152), 1, - sym_comment, - STATE(336), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8150] = 19, - ACTIONS(3), 1, + [6423] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(593), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6477] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11390,989 +10251,472 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(502), 1, + ACTIONS(494), 1, sym_message, - ACTIONS(504), 1, + ACTIONS(496), 1, sym_identifier, - ACTIONS(616), 1, - sym_endwhile, + ACTIONS(585), 1, + sym_endfunction, STATE(61), 1, sym_if_command, - STATE(115), 1, + STATE(120), 1, sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(139), 1, - aux_sym_source_file_repeat1, - STATE(153), 1, - sym_comment, - STATE(337), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8214] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(618), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(140), 1, - aux_sym_source_file_repeat1, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(338), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(154), 2, - sym_foreach_command, - sym_comment, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8276] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(562), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(155), 1, - sym_comment, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(366), 1, - sym__command_invocation, - STATE(413), 1, - sym_endforeach_command, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8340] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(634), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(156), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8402] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(502), 1, - sym_message, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(622), 1, - sym_endwhile, - STATE(61), 1, - sym_if_command, - STATE(115), 1, - sym_macro_command, - STATE(116), 1, - sym_function_command, - STATE(117), 1, - sym_while_command, - STATE(119), 1, - sym_foreach_command, - STATE(157), 1, - sym_comment, - STATE(177), 1, - aux_sym_source_file_repeat1, - STATE(253), 1, - sym_endwhile_command, - STATE(340), 1, - sym__command_invocation, - STATE(375), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8466] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(592), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(125), 1, - aux_sym_source_file_repeat1, - STATE(158), 1, - sym_comment, - STATE(311), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8530] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(636), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(159), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8592] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(638), 1, - anon_sym_RPAREN, - STATE(156), 1, - aux_sym_function_command_repeat1, - STATE(160), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8654] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(640), 1, - anon_sym_RPAREN, - STATE(159), 1, - aux_sym_function_command_repeat1, - STATE(161), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8716] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(532), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(103), 1, - aux_sym_source_file_repeat1, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(312), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(162), 2, - sym_macro_command, - sym_comment, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8778] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(496), 1, - sym_message, - ACTIONS(498), 1, - sym_identifier, - ACTIONS(624), 1, - sym_endfunction, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(163), 1, - sym_comment, - STATE(172), 1, - aux_sym_source_file_repeat1, - STATE(254), 1, - sym_endfunction_command, - STATE(376), 1, - sym__command_invocation, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [8842] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(642), 1, - anon_sym_RPAREN, - STATE(101), 1, - aux_sym_function_command_repeat1, - STATE(164), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8904] = 18, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(484), 1, - sym_bracket_argument, - ACTIONS(644), 1, - anon_sym_RPAREN, - STATE(104), 1, - aux_sym_function_command_repeat1, - STATE(165), 1, - sym_comment, - STATE(181), 1, - aux_sym_unquoted_argument_repeat1, - STATE(208), 1, - sym__escape_encoded, - STATE(210), 1, - sym_argument, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(204), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [8966] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(462), 1, - sym_message, - ACTIONS(464), 1, - sym_identifier, - ACTIONS(466), 1, - sym_endmacro, - STATE(63), 1, - sym_if_command, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, - sym_macro_command, - STATE(166), 1, - sym_comment, - STATE(179), 1, - aux_sym_source_file_repeat1, - STATE(255), 1, - sym_endmacro_command, - STATE(356), 1, - sym__command_invocation, - STATE(307), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [9030] = 19, - ACTIONS(3), 1, - sym_bracket_comment, - 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(510), 1, - sym_message, - ACTIONS(512), 1, - sym_identifier, - ACTIONS(632), 1, - sym_endforeach, - STATE(58), 1, - sym_if_command, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, - sym_foreach_command, - STATE(167), 1, - sym_comment, - STATE(176), 1, - aux_sym_source_file_repeat1, - STATE(316), 1, - sym_endforeach_command, - STATE(366), 1, - sym__command_invocation, - STATE(341), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [9094] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(646), 1, - anon_sym_RPAREN, - STATE(168), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(477), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9153] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(648), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(505), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9212] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(650), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(445), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9271] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(652), 1, - anon_sym_RPAREN, - STATE(171), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(462), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9330] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(654), 1, - sym_if, - ACTIONS(657), 1, - sym_foreach, - ACTIONS(660), 1, - sym_while, - ACTIONS(663), 1, - sym_function, - ACTIONS(666), 1, - sym_endfunction, - ACTIONS(668), 1, - sym_macro, - ACTIONS(671), 1, - sym_message, - ACTIONS(674), 1, - sym_identifier, - STATE(62), 1, - sym_if_command, - STATE(94), 1, - sym_macro_command, - STATE(95), 1, - sym_function_command, - STATE(96), 1, - sym_while_command, - STATE(97), 1, - sym_foreach_command, - STATE(376), 1, - sym__command_invocation, - STATE(172), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(357), 7, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - [9389] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(677), 1, - anon_sym_RPAREN, - STATE(173), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(426), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9448] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(105), 1, - sym_bracket_argument, - ACTIONS(679), 1, - anon_sym_RPAREN, - STATE(174), 1, - sym_comment, - STATE(192), 1, - aux_sym_unquoted_argument_repeat1, - STATE(278), 1, - sym__escape_encoded, - STATE(435), 1, - sym_argument, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - STATE(431), 2, - sym_quoted_argument, - sym_unquoted_argument, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9507] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(654), 1, - sym_if, - ACTIONS(657), 1, - sym_foreach, - ACTIONS(660), 1, - sym_while, - ACTIONS(663), 1, - sym_function, - ACTIONS(668), 1, - sym_macro, - ACTIONS(681), 1, - ts_builtin_sym_end, - ACTIONS(683), 1, - sym_message, - ACTIONS(686), 1, - sym_identifier, - STATE(59), 1, - sym_if_command, - STATE(106), 1, - sym_foreach_command, - STATE(107), 1, - sym_while_command, - STATE(114), 1, - sym_function_command, STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(334), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6535] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(587), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(333), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6593] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(595), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(144), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6647] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(597), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(80), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6701] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(599), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(82), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6755] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(601), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(105), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6809] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(603), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6863] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(605), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(145), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6917] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(607), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [6971] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(609), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7025] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(611), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(85), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7079] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(613), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, sym_macro_command, STATE(381), 1, - sym__command_invocation, - STATE(175), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(380), 7, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(154), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -12380,41 +10724,41 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [9566] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(654), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7137] = 16, + ACTIONS(7), 1, sym_if, - ACTIONS(657), 1, + ACTIONS(9), 1, sym_foreach, - ACTIONS(660), 1, + ACTIONS(11), 1, sym_while, - ACTIONS(663), 1, + ACTIONS(13), 1, sym_function, - ACTIONS(666), 1, - sym_endforeach, - ACTIONS(668), 1, + ACTIONS(15), 1, sym_macro, - ACTIONS(689), 1, + ACTIONS(478), 1, sym_message, - ACTIONS(692), 1, + ACTIONS(480), 1, sym_identifier, - STATE(58), 1, + ACTIONS(615), 1, + sym_endwhile, + STATE(53), 1, sym_if_command, - STATE(151), 1, - sym_macro_command, - STATE(152), 1, - sym_function_command, - STATE(153), 1, - sym_while_command, - STATE(154), 1, + STATE(108), 1, sym_foreach_command, - STATE(366), 1, - sym__command_invocation, - STATE(176), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(341), 7, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(262), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(155), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -12422,41 +10766,694 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [9625] = 17, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(654), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7195] = 16, + ACTIONS(7), 1, sym_if, - ACTIONS(657), 1, + ACTIONS(9), 1, sym_foreach, - ACTIONS(660), 1, + ACTIONS(11), 1, sym_while, - ACTIONS(663), 1, + ACTIONS(13), 1, sym_function, - ACTIONS(666), 1, - sym_endwhile, - ACTIONS(668), 1, + ACTIONS(15), 1, sym_macro, - ACTIONS(695), 1, + ACTIONS(494), 1, sym_message, - ACTIONS(698), 1, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(617), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(377), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(156), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7253] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(522), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(346), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7311] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(619), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(131), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7365] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(621), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(371), 1, + sym_endmacro_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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7423] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(623), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(75), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7477] = 16, + 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(472), 1, + sym_message, + ACTIONS(474), 1, + sym_identifier, + ACTIONS(613), 1, + sym_endforeach, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_command, + STATE(367), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7535] = 16, + 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(478), 1, + sym_message, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(615), 1, + sym_endwhile, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + STATE(366), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7593] = 16, + 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(494), 1, + sym_message, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(617), 1, + sym_endfunction, + STATE(61), 1, + sym_if_command, + STATE(120), 1, + sym_macro_command, + STATE(121), 1, + sym_function_command, + STATE(122), 1, + sym_while_command, + STATE(123), 1, + sym_foreach_command, + STATE(365), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7651] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(625), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(74), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7705] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(627), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(160), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7759] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(577), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(347), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7817] = 14, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(458), 1, + anon_sym_DQUOTE, + ACTIONS(460), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(464), 1, + sym_bracket_argument, + ACTIONS(629), 1, + anon_sym_RPAREN, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(196), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(174), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7871] = 16, + 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(486), 1, + sym_message, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(621), 1, + sym_endmacro, + STATE(54), 1, + sym_if_command, + STATE(89), 1, + sym_macro_command, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + STATE(364), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7929] = 15, + ACTIONS(631), 1, + sym_if, + ACTIONS(634), 1, + sym_foreach, + ACTIONS(637), 1, + sym_endforeach, + ACTIONS(639), 1, + sym_while, + ACTIONS(642), 1, + sym_function, + ACTIONS(645), 1, + sym_macro, + ACTIONS(648), 1, + sym_message, + ACTIONS(651), 1, + sym_identifier, + STATE(57), 1, + sym_if_command, + STATE(147), 1, + sym_foreach_command, + STATE(148), 1, + sym_while_command, + STATE(149), 1, + sym_function_command, + STATE(152), 1, + sym_macro_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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7984] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(654), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(432), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8037] = 15, + ACTIONS(631), 1, + sym_if, + ACTIONS(634), 1, + sym_foreach, + ACTIONS(637), 1, + sym_endwhile, + ACTIONS(639), 1, + sym_while, + ACTIONS(642), 1, + sym_function, + ACTIONS(645), 1, + sym_macro, + ACTIONS(656), 1, + sym_message, + ACTIONS(659), 1, + sym_identifier, + STATE(53), 1, + sym_if_command, + STATE(108), 1, + sym_foreach_command, + STATE(117), 1, + sym_while_command, + STATE(127), 1, + sym_function_command, + STATE(128), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(164), 9, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [8092] = 15, + ACTIONS(631), 1, + sym_if, + ACTIONS(634), 1, + sym_foreach, + ACTIONS(637), 1, + sym_endfunction, + ACTIONS(639), 1, + sym_while, + ACTIONS(642), 1, + sym_function, + ACTIONS(645), 1, + sym_macro, + ACTIONS(662), 1, + sym_message, + ACTIONS(665), 1, sym_identifier, STATE(61), 1, sym_if_command, - STATE(115), 1, + STATE(120), 1, sym_macro_command, - STATE(116), 1, + STATE(121), 1, sym_function_command, - STATE(117), 1, + STATE(122), 1, sym_while_command, - STATE(119), 1, + STATE(123), 1, sym_foreach_command, - STATE(340), 1, - sym__command_invocation, - STATE(177), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(375), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(165), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -12464,9 +11461,205 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [9684] = 18, - ACTIONS(3), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [8147] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(668), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(400), 1, + sym_argument, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8200] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(670), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(416), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8253] = 15, + ACTIONS(631), 1, + sym_if, + ACTIONS(634), 1, + sym_foreach, + ACTIONS(639), 1, + sym_while, + ACTIONS(642), 1, + sym_function, + ACTIONS(645), 1, + sym_macro, + ACTIONS(672), 1, + ts_builtin_sym_end, + ACTIONS(674), 1, + sym_message, + ACTIONS(677), 1, + sym_identifier, + STATE(60), 1, + sym_if_command, + STATE(77), 1, + sym_while_command, + STATE(98), 1, + sym_function_command, + STATE(115), 1, + sym_macro_command, + STATE(133), 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_message_command, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [8308] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(680), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(395), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8361] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(682), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(405), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8414] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -12481,25 +11674,22 @@ static const uint16_t ts_small_parse_table[] = { sym_message, ACTIONS(19), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(684), 1, ts_builtin_sym_end, - STATE(59), 1, + STATE(60), 1, sym_if_command, - STATE(106), 1, - sym_foreach_command, - STATE(107), 1, + STATE(77), 1, sym_while_command, - STATE(114), 1, + STATE(98), 1, sym_function_command, - STATE(121), 1, + STATE(115), 1, sym_macro_command, - STATE(175), 1, - aux_sym_source_file_repeat1, - STATE(178), 1, - sym_comment, - STATE(381), 1, - sym__command_invocation, - STATE(380), 7, + STATE(133), 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, @@ -12507,41 +11697,78 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [9745] = 17, - ACTIONS(3), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [8469] = 14, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(100), 1, + anon_sym_DQUOTE, + ACTIONS(102), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(110), 1, + sym_bracket_argument, + ACTIONS(686), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym__escape_encoded, + STATE(423), 1, + sym_argument, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(654), 1, + sym_line_comment, + STATE(434), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(184), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8522] = 15, + ACTIONS(631), 1, sym_if, - ACTIONS(657), 1, + ACTIONS(634), 1, sym_foreach, - ACTIONS(660), 1, - sym_while, - ACTIONS(663), 1, - sym_function, - ACTIONS(666), 1, + ACTIONS(637), 1, sym_endmacro, - ACTIONS(668), 1, + ACTIONS(639), 1, + sym_while, + ACTIONS(642), 1, + sym_function, + ACTIONS(645), 1, sym_macro, - ACTIONS(703), 1, + ACTIONS(688), 1, sym_message, - ACTIONS(706), 1, + ACTIONS(691), 1, sym_identifier, - STATE(63), 1, + STATE(54), 1, sym_if_command, - STATE(149), 1, - sym_foreach_command, - STATE(150), 1, - sym_while_command, - STATE(158), 1, - sym_function_command, - STATE(162), 1, + STATE(89), 1, sym_macro_command, - STATE(356), 1, - sym__command_invocation, - STATE(179), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(307), 7, + STATE(91), 1, + sym_function_command, + STATE(92), 1, + sym_while_command, + STATE(96), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(173), 9, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -12549,450 +11776,238 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_def, sym_message_command, sym_normal_command, - [9804] = 12, - ACTIONS(3), 1, + sym__command_invocation, + aux_sym_source_file_repeat1, + [8577] = 10, + ACTIONS(452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(454), 1, + anon_sym_DOLLARENV, + ACTIONS(456), 1, + anon_sym_DOLLARCACHE, + ACTIONS(694), 1, + aux_sym_unquoted_argument_token1, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + ACTIONS(203), 3, + sym_bracket_argument, + anon_sym_DQUOTE, + anon_sym_RPAREN, + STATE(175), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(450), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8619] = 10, + ACTIONS(699), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(702), 1, + anon_sym_DOLLARENV, + ACTIONS(705), 1, + anon_sym_DOLLARCACHE, + ACTIONS(708), 1, + aux_sym_unquoted_argument_token1, + STATE(193), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(196), 3, + sym_bracket_argument, + anon_sym_DQUOTE, + anon_sym_RPAREN, + STATE(175), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(195), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(696), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8661] = 11, + ACTIONS(713), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(715), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(718), 1, anon_sym_DOLLARENV, + ACTIONS(717), 1, + anon_sym_DOLLARCACHE, + ACTIONS(719), 1, + anon_sym_DQUOTE, ACTIONS(721), 1, - anon_sym_DOLLARCACHE, - ACTIONS(724), 1, - aux_sym_unquoted_argument_token1, - STATE(208), 1, - sym__escape_encoded, - ACTIONS(709), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(180), 2, - sym_comment, - aux_sym_unquoted_argument_repeat1, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(194), 3, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - ACTIONS(712), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9850] = 13, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(472), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(474), 1, - anon_sym_DOLLARENV, - ACTIONS(476), 1, - anon_sym_DOLLARCACHE, - ACTIONS(480), 1, - aux_sym_unquoted_argument_token1, - STATE(180), 1, - aux_sym_unquoted_argument_repeat1, - STATE(181), 1, - sym_comment, - STATE(208), 1, - sym__escape_encoded, - ACTIONS(468), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(211), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(201), 3, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - ACTIONS(470), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(209), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [9898] = 14, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, - anon_sym_DOLLARENV, - ACTIONS(735), 1, - anon_sym_DOLLARCACHE, - ACTIONS(737), 1, - anon_sym_DQUOTE, - ACTIONS(739), 1, aux_sym_quoted_element_token1, - STATE(182), 1, - sym_comment, - STATE(196), 1, - aux_sym_quoted_element_repeat1, - STATE(261), 1, + STATE(259), 1, sym__escape_encoded, - STATE(514), 1, + STATE(403), 1, sym_quoted_element, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(189), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, + aux_sym_quoted_element_repeat1, + STATE(237), 3, sym_normal_var, sym_env_var, sym_cache_var, - [9947] = 14, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8704] = 11, + ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, + ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(735), 1, + ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(739), 1, + ACTIONS(721), 1, aux_sym_quoted_element_token1, - ACTIONS(741), 1, + ACTIONS(723), 1, anon_sym_DQUOTE, - STATE(183), 1, - sym_comment, - STATE(196), 1, - aux_sym_quoted_element_repeat1, - STATE(261), 1, + STATE(259), 1, sym__escape_encoded, - STATE(433), 1, + STATE(425), 1, sym_quoted_element, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(189), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, + aux_sym_quoted_element_repeat1, + STATE(237), 3, sym_normal_var, sym_env_var, sym_cache_var, - [9996] = 14, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8747] = 11, + ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, + ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(735), 1, + ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(739), 1, + ACTIONS(721), 1, aux_sym_quoted_element_token1, - ACTIONS(743), 1, + ACTIONS(725), 1, anon_sym_DQUOTE, - STATE(184), 1, - sym_comment, - STATE(196), 1, - aux_sym_quoted_element_repeat1, - STATE(261), 1, + STATE(259), 1, sym__escape_encoded, - STATE(420), 1, + STATE(407), 1, sym_quoted_element, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(189), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, + aux_sym_quoted_element_repeat1, + STATE(237), 3, sym_normal_var, sym_env_var, sym_cache_var, - [10045] = 14, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8790] = 11, + ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, + ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(735), 1, + ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(739), 1, + ACTIONS(721), 1, aux_sym_quoted_element_token1, - ACTIONS(745), 1, + ACTIONS(727), 1, anon_sym_DQUOTE, - STATE(185), 1, - sym_comment, - STATE(196), 1, - aux_sym_quoted_element_repeat1, - STATE(261), 1, + STATE(259), 1, sym__escape_encoded, - STATE(421), 1, + STATE(413), 1, sym_quoted_element, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(189), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, + aux_sym_quoted_element_repeat1, + STATE(237), 3, sym_normal_var, sym_env_var, sym_cache_var, - [10094] = 14, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8833] = 11, + ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, + ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(735), 1, + ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(739), 1, + ACTIONS(721), 1, aux_sym_quoted_element_token1, - ACTIONS(747), 1, + ACTIONS(729), 1, anon_sym_DQUOTE, - STATE(186), 1, - sym_comment, - STATE(196), 1, - aux_sym_quoted_element_repeat1, - STATE(261), 1, + STATE(259), 1, sym__escape_encoded, - STATE(486), 1, + STATE(418), 1, sym_quoted_element, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(189), 3, sym_escape_sequence, sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [10143] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(751), 1, - aux_sym_unquoted_argument_token1, - STATE(187), 1, - sym_comment, - ACTIONS(749), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10171] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(231), 1, - aux_sym_unquoted_argument_token1, - STATE(188), 1, - sym_comment, - ACTIONS(229), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10199] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(219), 1, - aux_sym_unquoted_argument_token1, - STATE(189), 1, - sym_comment, - ACTIONS(217), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10227] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(243), 1, - aux_sym_unquoted_argument_token1, - STATE(190), 1, - sym_comment, - ACTIONS(241), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10255] = 12, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(194), 1, - anon_sym_RPAREN, - ACTIONS(759), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(762), 1, - anon_sym_DOLLARENV, - ACTIONS(765), 1, - anon_sym_DOLLARCACHE, - ACTIONS(768), 1, - aux_sym_unquoted_argument_token1, - STATE(278), 1, - sym__escape_encoded, - ACTIONS(753), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(191), 2, - sym_comment, - aux_sym_unquoted_argument_repeat1, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(756), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [10299] = 13, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(89), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(91), 1, - anon_sym_DOLLARENV, - ACTIONS(93), 1, - anon_sym_DOLLARCACHE, - ACTIONS(97), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(201), 1, - anon_sym_RPAREN, - STATE(191), 1, - aux_sym_unquoted_argument_repeat1, - STATE(192), 1, - sym_comment, - STATE(278), 1, - sym__escape_encoded, - ACTIONS(85), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(264), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(87), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(263), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [10345] = 12, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(780), 1, - anon_sym_DOLLARENV, - ACTIONS(783), 1, - anon_sym_DOLLARCACHE, - ACTIONS(786), 1, - anon_sym_DQUOTE, - ACTIONS(788), 1, - aux_sym_quoted_element_token1, - STATE(261), 1, - sym__escape_encoded, - ACTIONS(771), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(193), 2, - sym_comment, aux_sym_quoted_element_repeat1, - STATE(236), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(774), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, + STATE(237), 3, sym_normal_var, sym_env_var, sym_cache_var, - [10389] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8876] = 3, ACTIONS(215), 1, aux_sym_unquoted_argument_token1, - STATE(194), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(213), 16, sym_bracket_argument, sym__escape_identity, @@ -13010,118 +12025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ZIP_LISTS, anon_sym_LISTS, anon_sym_ITEMS, - [10417] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(247), 1, - aux_sym_unquoted_argument_token1, - STATE(195), 1, - sym_comment, - ACTIONS(245), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10445] = 13, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(731), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(733), 1, - anon_sym_DOLLARENV, - ACTIONS(735), 1, - anon_sym_DOLLARCACHE, - ACTIONS(739), 1, - aux_sym_quoted_element_token1, - ACTIONS(791), 1, - anon_sym_DQUOTE, - STATE(193), 1, - aux_sym_quoted_element_repeat1, - STATE(196), 1, - sym_comment, - STATE(261), 1, - sym__escape_encoded, - ACTIONS(727), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(236), 2, - sym_escape_sequence, - sym_variable_ref, - ACTIONS(729), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - STATE(213), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - [10491] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(227), 1, - aux_sym_unquoted_argument_token1, - STATE(197), 1, - sym_comment, - ACTIONS(225), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10519] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - STATE(198), 1, - sym_comment, - ACTIONS(233), 16, - 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, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [10547] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [8902] = 3, ACTIONS(239), 1, aux_sym_unquoted_argument_token1, - STATE(199), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(237), 16, sym_bracket_argument, sym__escape_identity, @@ -13139,13 +12048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ZIP_LISTS, anon_sym_LISTS, anon_sym_ITEMS, - [10575] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [8928] = 3, ACTIONS(211), 1, aux_sym_unquoted_argument_token1, - STATE(200), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(209), 16, sym_bracket_argument, sym__escape_identity, @@ -13163,13 +12071,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ZIP_LISTS, anon_sym_LISTS, anon_sym_ITEMS, - [10603] = 4, - ACTIONS(3), 1, + [8954] = 10, + ACTIONS(94), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(96), 1, + anon_sym_DOLLARENV, + ACTIONS(98), 1, + anon_sym_DOLLARCACHE, + ACTIONS(203), 1, + anon_sym_RPAREN, + ACTIONS(731), 1, + aux_sym_unquoted_argument_token1, + STATE(253), 1, + sym__escape_encoded, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + STATE(188), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(92), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8994] = 10, + ACTIONS(736), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(739), 1, + anon_sym_DOLLARENV, + ACTIONS(742), 1, + anon_sym_DOLLARCACHE, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(747), 1, + aux_sym_quoted_element_token1, + STATE(259), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(185), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(237), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(733), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9034] = 3, + ACTIONS(219), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(217), 16, + 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, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [9060] = 3, + ACTIONS(231), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(229), 16, + 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, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [9086] = 10, + ACTIONS(196), 1, + anon_sym_RPAREN, + ACTIONS(753), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(756), 1, + anon_sym_DOLLARENV, + ACTIONS(759), 1, + anon_sym_DOLLARCACHE, + ACTIONS(762), 1, + aux_sym_unquoted_argument_token1, + STATE(253), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(188), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(258), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(750), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9126] = 10, + ACTIONS(713), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(715), 1, + anon_sym_DOLLARENV, + ACTIONS(717), 1, + anon_sym_DOLLARCACHE, + ACTIONS(765), 1, + anon_sym_DQUOTE, + ACTIONS(767), 1, + aux_sym_quoted_element_token1, + STATE(259), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(185), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(237), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(711), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9166] = 3, ACTIONS(223), 1, aux_sym_unquoted_argument_token1, - STATE(201), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(221), 16, sym_bracket_argument, sym__escape_identity, @@ -13187,52 +12260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ZIP_LISTS, anon_sym_LISTS, anon_sym_ITEMS, - [10631] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(247), 1, - aux_sym_unquoted_argument_token1, - STATE(202), 1, - sym_comment, - ACTIONS(245), 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, - [10654] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(223), 1, - aux_sym_unquoted_argument_token1, - STATE(203), 1, - sym_comment, - ACTIONS(221), 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, - [10677] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [9192] = 3, ACTIONS(235), 1, aux_sym_unquoted_argument_token1, - STATE(204), 1, - sym_comment, - ACTIONS(233), 11, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(233), 16, sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, @@ -13244,13 +12278,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10700] = 4, - ACTIONS(3), 1, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [9218] = 3, + ACTIONS(227), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + ACTIONS(225), 16, + 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, + anon_sym_IN, + anon_sym_RANGE, + anon_sym_ZIP_LISTS, + anon_sym_LISTS, + anon_sym_ITEMS, + [9244] = 3, ACTIONS(215), 1, aux_sym_unquoted_argument_token1, - STATE(205), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(213), 11, sym_bracket_argument, sym__escape_identity, @@ -13263,32 +12324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10723] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(239), 1, - aux_sym_unquoted_argument_token1, - STATE(206), 1, - sym_comment, - ACTIONS(237), 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, - [10746] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [9265] = 3, ACTIONS(219), 1, aux_sym_unquoted_argument_token1, - STATE(207), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(217), 11, sym_bracket_argument, sym__escape_identity, @@ -13301,13 +12342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10769] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [9286] = 3, ACTIONS(231), 1, aux_sym_unquoted_argument_token1, - STATE(208), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(229), 11, sym_bracket_argument, sym__escape_identity, @@ -13320,14 +12360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10792] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(227), 1, + [9307] = 3, + ACTIONS(239), 1, aux_sym_unquoted_argument_token1, - STATE(209), 1, - sym_comment, - ACTIONS(225), 11, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(237), 11, sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, @@ -13339,14 +12378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10815] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(795), 1, + [9328] = 3, + ACTIONS(223), 1, aux_sym_unquoted_argument_token1, - STATE(210), 1, - sym_comment, - ACTIONS(793), 11, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(221), 11, sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, @@ -13358,13 +12396,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10838] = 4, - ACTIONS(3), 1, + [9349] = 3, + ACTIONS(235), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + ACTIONS(233), 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, + [9370] = 3, ACTIONS(211), 1, aux_sym_unquoted_argument_token1, - STATE(211), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(209), 11, sym_bracket_argument, sym__escape_identity, @@ -13377,14 +12432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10861] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(243), 1, + [9391] = 3, + ACTIONS(227), 1, aux_sym_unquoted_argument_token1, - STATE(212), 1, - sym_comment, - ACTIONS(241), 11, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(225), 11, sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, @@ -13396,12 +12450,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, anon_sym_RPAREN, - [10884] = 3, - ACTIONS(3), 1, + [9412] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(213), 1, - sym_comment, - ACTIONS(227), 10, + sym_line_comment, + ACTIONS(769), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9429] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9446] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(414), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9471] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(421), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9496] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9513] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(419), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9538] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(412), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9563] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(411), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9588] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(779), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9605] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(781), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9622] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(408), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9647] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(396), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9672] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9689] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(393), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9714] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9731] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(402), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9756] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9773] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(789), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9790] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9807] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(409), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9832] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(410), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [9857] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9874] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9891] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9908] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9925] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(211), 10, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -13412,358 +12884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, aux_sym_quoted_element_token1, - [10903] = 4, - ACTIONS(3), 1, + [9942] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(223), 1, - aux_sym_unquoted_argument_token1, - STATE(214), 1, - sym_comment, - ACTIONS(221), 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, - [10924] = 9, - ACTIONS(3), 1, + sym_line_comment, + ACTIONS(801), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [9959] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(215), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(467), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [10955] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(216), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(466), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [10986] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(217), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(460), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11017] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(218), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(440), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11048] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(219), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(439), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11079] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(220), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(432), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11110] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(221), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(425), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11141] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(222), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(424), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11172] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(223), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(437), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11203] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(224), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(452), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11234] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(225), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(453), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11265] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(226), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(487), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11296] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(227), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(495), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11327] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(228), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(496), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11358] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(229), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(515), 1, - sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11389] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(230), 1, - sym_comment, + sym_line_comment, ACTIONS(803), 10, sym_if, sym_elseif, @@ -13775,33 +12914,48 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [11408] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, + [9976] = 6, + ACTIONS(775), 1, aux_sym_variable_token1, - STATE(231), 1, - sym_comment, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, + STATE(389), 1, sym__escape_encoded, - STATE(422), 1, + STATE(420), 1, sym_variable, - ACTIONS(797), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, - [11439] = 3, - ACTIONS(3), 1, + sym__escape_semicolon, + [10001] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(428), 1, + sym_variable, + ACTIONS(3), 2, sym_bracket_comment, - STATE(232), 1, - sym_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10026] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(805), 10, sym_if, sym_elseif, @@ -13813,93 +12967,78 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [11458] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, + [10043] = 6, + ACTIONS(775), 1, aux_sym_variable_token1, - ACTIONS(807), 1, - anon_sym_RBRACE, - STATE(233), 1, - sym_comment, - STATE(240), 1, - aux_sym_variable_repeat1, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, + STATE(389), 1, sym__escape_encoded, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11489] = 9, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(234), 1, - sym_comment, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(448), 1, + STATE(430), 1, sym_variable, - ACTIONS(797), 2, - sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11520] = 9, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(801), 1, - aux_sym_variable_token1, - STATE(233), 1, - aux_sym_variable_repeat1, - STATE(235), 1, - sym_comment, - STATE(417), 1, + sym_line_comment, + STATE(252), 2, sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - STATE(475), 1, - sym_variable, - ACTIONS(797), 2, + aux_sym_variable_repeat1, + ACTIONS(773), 5, sym__escape_identity, - sym__escape_semicolon, - ACTIONS(799), 3, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, - [11551] = 3, - ACTIONS(3), 1, + sym__escape_semicolon, + [10068] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(236), 1, - sym_comment, + sym_line_comment, + ACTIONS(807), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10085] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(809), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10102] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(436), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, 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, - [11570] = 3, - ACTIONS(3), 1, + [10127] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(237), 1, - sym_comment, + sym_line_comment, ACTIONS(811), 10, sym_if, sym_elseif, @@ -13911,384 +13050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [11589] = 3, - ACTIONS(3), 1, + [10144] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(238), 1, - sym_comment, - ACTIONS(813), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11608] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(239), 1, - sym_comment, - ACTIONS(815), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11627] = 8, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(823), 1, - aux_sym_variable_token1, - ACTIONS(826), 1, - anon_sym_RBRACE, - STATE(417), 1, - sym_escape_sequence, - STATE(419), 1, - sym__escape_encoded, - ACTIONS(817), 2, - sym__escape_identity, - sym__escape_semicolon, - STATE(240), 2, - sym_comment, - aux_sym_variable_repeat1, - ACTIONS(820), 3, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - [11656] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(241), 1, - sym_comment, - ACTIONS(828), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11675] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(242), 1, - sym_comment, - ACTIONS(830), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11694] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(243), 1, - sym_comment, - ACTIONS(832), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11713] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(244), 1, - sym_comment, - ACTIONS(834), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11732] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(245), 1, - sym_comment, - ACTIONS(836), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11751] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(246), 1, - sym_comment, - ACTIONS(838), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11770] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(247), 1, - sym_comment, - ACTIONS(840), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11789] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(248), 1, - sym_comment, - ACTIONS(842), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11808] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(249), 1, - sym_comment, - ACTIONS(844), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11827] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(250), 1, - sym_comment, - ACTIONS(846), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11846] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(251), 1, - sym_comment, - ACTIONS(848), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11865] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(252), 1, - sym_comment, - ACTIONS(850), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11884] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(253), 1, - sym_comment, - ACTIONS(852), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11903] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(254), 1, - sym_comment, - ACTIONS(854), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11922] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(255), 1, - sym_comment, - ACTIONS(856), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11941] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(256), 1, - sym_comment, - ACTIONS(858), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11960] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(257), 1, - sym_comment, - ACTIONS(860), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11979] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(258), 1, - sym_comment, - ACTIONS(862), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11998] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(259), 1, - sym_comment, - ACTIONS(864), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12017] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(260), 1, - sym_comment, - ACTIONS(866), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12036] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(261), 1, - sym_comment, + sym_line_comment, ACTIONS(231), 10, sym__escape_identity, anon_sym_BSLASHt, @@ -14300,12 +13065,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, aux_sym_quoted_element_token1, - [12055] = 3, - ACTIONS(3), 1, + [10161] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(262), 1, - sym_comment, - ACTIONS(223), 10, + sym_line_comment, + ACTIONS(813), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10178] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10195] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(817), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10212] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10229] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10246] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(437), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10271] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(823), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10288] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(825), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10305] = 6, + ACTIONS(830), 1, + aux_sym_variable_token1, + ACTIONS(833), 1, + anon_sym_RBRACE, + STATE(389), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(246), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(827), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10330] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(835), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10347] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(837), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10364] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(839), 10, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [10381] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(391), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10406] = 6, + ACTIONS(775), 1, + aux_sym_variable_token1, + STATE(389), 1, + sym__escape_encoded, + STATE(390), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(252), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10431] = 6, + ACTIONS(841), 1, + aux_sym_variable_token1, + ACTIONS(843), 1, + anon_sym_RBRACE, + STATE(389), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(246), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(773), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [10456] = 3, + ACTIONS(215), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(213), 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, + [10475] = 3, + ACTIONS(219), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(217), 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, + [10494] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(235), 10, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -14316,30 +13357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, aux_sym_quoted_element_token1, - [12074] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(227), 1, - aux_sym_unquoted_argument_token1, - STATE(263), 1, - sym_comment, - ACTIONS(225), 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, - [12095] = 4, - ACTIONS(3), 1, - sym_bracket_comment, + [10511] = 3, ACTIONS(211), 1, aux_sym_unquoted_argument_token1, - STATE(264), 1, - sym_comment, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(209), 9, sym__escape_identity, anon_sym_BSLASHt, @@ -14350,11 +13373,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARENV, anon_sym_DOLLARCACHE, anon_sym_RPAREN, - [12116] = 3, - ACTIONS(3), 1, + [10530] = 3, + ACTIONS(235), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, sym_bracket_comment, - STATE(265), 1, - sym_comment, + sym_line_comment, + ACTIONS(233), 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, + [10549] = 3, + ACTIONS(231), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(229), 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, + [10568] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, ACTIONS(215), 10, sym__escape_identity, anon_sym_BSLASHt, @@ -14366,109 +13420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, aux_sym_quoted_element_token1, - [12135] = 3, - ACTIONS(3), 1, + [10585] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(266), 1, - sym_comment, - ACTIONS(868), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12154] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(267), 1, - sym_comment, - ACTIONS(870), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12173] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(215), 1, - aux_sym_unquoted_argument_token1, - STATE(268), 1, - sym_comment, - ACTIONS(213), 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, - [12194] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(269), 1, - sym_comment, - ACTIONS(872), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12213] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(270), 1, - sym_comment, - ACTIONS(874), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12232] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(271), 1, - sym_comment, - ACTIONS(876), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12251] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(272), 1, - sym_comment, - ACTIONS(243), 10, + sym_line_comment, + ACTIONS(219), 10, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -14479,113 +13435,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARCACHE, anon_sym_DQUOTE, aux_sym_quoted_element_token1, - [12270] = 3, - ACTIONS(3), 1, + [10602] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(273), 1, - sym_comment, - ACTIONS(247), 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, - [12289] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(274), 1, - sym_comment, - ACTIONS(878), 10, + sym_line_comment, + ACTIONS(801), 8, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [10617] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(817), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, sym_macro, sym_message, sym_identifier, - [12308] = 3, - ACTIONS(3), 1, + [10632] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(275), 1, - sym_comment, - ACTIONS(880), 10, + sym_line_comment, + ACTIONS(771), 8, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_message, sym_identifier, - [12327] = 4, - ACTIONS(3), 1, + [10647] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(243), 1, - aux_sym_unquoted_argument_token1, - STATE(276), 1, - sym_comment, - ACTIONS(241), 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, - [12348] = 4, - ACTIONS(3), 1, + sym_line_comment, + ACTIONS(821), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10662] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(247), 1, - aux_sym_unquoted_argument_token1, - STATE(277), 1, - sym_comment, - ACTIONS(245), 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, - [12369] = 4, - ACTIONS(3), 1, + sym_line_comment, + ACTIONS(819), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10677] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(231), 1, - aux_sym_unquoted_argument_token1, - STATE(278), 1, - sym_comment, - ACTIONS(229), 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, - [12390] = 4, - ACTIONS(3), 1, + sym_line_comment, + ACTIONS(817), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10692] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(882), 1, + sym_line_comment, + ACTIONS(815), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10707] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10722] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [10737] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [10752] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10767] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10782] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10797] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10812] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10827] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10842] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10857] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(801), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10872] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(769), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10887] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10902] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10917] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10932] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10947] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10962] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [10977] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(789), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [10992] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [11007] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [11022] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [11037] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(781), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_message, + sym_identifier, + [11052] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(789), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11067] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11082] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11097] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11112] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11127] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11142] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(769), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11157] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11172] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11187] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11202] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11217] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11232] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11247] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11262] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11277] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11292] = 3, + ACTIONS(845), 1, ts_builtin_sym_end, - STATE(279), 1, - sym_comment, - ACTIONS(878), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 7, sym_if, sym_foreach, sym_while, @@ -14593,882 +14047,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [12409] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(280), 1, - sym_comment, - ACTIONS(840), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12426] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(281), 1, - sym_comment, - ACTIONS(884), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12443] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(282), 1, - sym_comment, - ACTIONS(886), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12460] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(283), 1, - sym_comment, - ACTIONS(854), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12477] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(284), 1, - sym_comment, - ACTIONS(852), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12494] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(285), 1, - sym_comment, - ACTIONS(844), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12511] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(286), 1, - sym_comment, - ACTIONS(846), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12528] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(287), 1, - sym_comment, - ACTIONS(848), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12545] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(288), 1, - sym_comment, - ACTIONS(850), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12562] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(289), 1, - sym_comment, - ACTIONS(852), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12579] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(290), 1, - sym_comment, - ACTIONS(854), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12596] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(291), 1, - sym_comment, - ACTIONS(856), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12613] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(292), 1, - sym_comment, - ACTIONS(860), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12630] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(293), 1, - sym_comment, - ACTIONS(850), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12647] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(294), 1, - sym_comment, - ACTIONS(858), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12664] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(295), 1, - sym_comment, - ACTIONS(860), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12681] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(296), 1, - sym_comment, - ACTIONS(862), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12698] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(297), 1, - sym_comment, - ACTIONS(864), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12715] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(298), 1, - sym_comment, - ACTIONS(880), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12732] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(299), 1, - sym_comment, - ACTIONS(872), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12749] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(300), 1, - sym_comment, - ACTIONS(870), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12766] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(301), 1, - sym_comment, - ACTIONS(862), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12783] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(302), 1, - sym_comment, - ACTIONS(868), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12800] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(303), 1, - sym_comment, - ACTIONS(866), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12817] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(304), 1, - sym_comment, - ACTIONS(878), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12834] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(305), 1, - sym_comment, - ACTIONS(876), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12851] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(306), 1, - sym_comment, - ACTIONS(874), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12868] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(307), 1, - sym_comment, - ACTIONS(832), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12885] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(308), 1, - sym_comment, - ACTIONS(834), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12902] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(309), 1, - sym_comment, - ACTIONS(836), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12919] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(310), 1, - sym_comment, - ACTIONS(838), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12936] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(311), 1, - sym_comment, - ACTIONS(840), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12953] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(312), 1, - sym_comment, - ACTIONS(842), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12970] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(313), 1, - sym_comment, - ACTIONS(844), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12987] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(314), 1, - sym_comment, - ACTIONS(846), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13004] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(315), 1, - sym_comment, - ACTIONS(848), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13021] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(316), 1, - sym_comment, - ACTIONS(850), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13038] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(317), 1, - sym_comment, - ACTIONS(852), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13055] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(318), 1, - sym_comment, - ACTIONS(854), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13072] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(319), 1, - sym_comment, - ACTIONS(856), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13089] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(320), 1, - sym_comment, - ACTIONS(858), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13106] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(321), 1, - sym_comment, - ACTIONS(860), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13123] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(322), 1, - sym_comment, - ACTIONS(862), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13140] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(323), 1, - sym_comment, - ACTIONS(864), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13157] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(324), 1, - sym_comment, - ACTIONS(880), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13174] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(325), 1, - sym_comment, - ACTIONS(872), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13191] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(326), 1, - sym_comment, - ACTIONS(870), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13208] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(327), 1, - sym_comment, - ACTIONS(868), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13225] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(328), 1, - sym_comment, - ACTIONS(866), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13242] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(329), 1, - sym_comment, - ACTIONS(878), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13259] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(330), 1, - sym_comment, - ACTIONS(876), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13276] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(331), 1, - sym_comment, - ACTIONS(874), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [13293] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(332), 1, - sym_comment, - ACTIONS(848), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13310] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(333), 1, - sym_comment, - ACTIONS(846), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13327] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(334), 1, - sym_comment, - ACTIONS(844), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13344] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(335), 1, - sym_comment, - ACTIONS(842), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13361] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(336), 1, - sym_comment, - ACTIONS(840), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13378] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(337), 1, - sym_comment, - ACTIONS(838), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13395] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(338), 1, - sym_comment, - ACTIONS(836), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13412] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(339), 1, - sym_comment, - ACTIONS(834), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13429] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(340), 1, - sym_comment, - ACTIONS(888), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13446] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(341), 1, - sym_comment, - ACTIONS(832), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13463] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(890), 1, + [11309] = 3, + ACTIONS(847), 1, ts_builtin_sym_end, - STATE(342), 1, - sym_comment, - ACTIONS(866), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 7, sym_if, sym_foreach, sym_while, @@ -15476,12 +14061,105 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [13482] = 3, - ACTIONS(3), 1, + [11326] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(343), 1, - sym_comment, - ACTIONS(856), 8, + sym_line_comment, + ACTIONS(817), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11341] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11356] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 8, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_message, + sym_identifier, + [11371] = 3, + ACTIONS(849), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(817), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11388] = 3, + ACTIONS(851), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11405] = 3, + ACTIONS(853), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11422] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(855), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11437] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(857), 8, sym_if, sym_foreach, sym_while, @@ -15490,12 +14168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [13499] = 3, - ACTIONS(3), 1, + [11452] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(344), 1, - sym_comment, - ACTIONS(842), 8, + sym_line_comment, + ACTIONS(859), 8, sym_if, sym_foreach, sym_while, @@ -15504,166 +14181,11 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [13516] = 3, - ACTIONS(3), 1, + [11467] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(345), 1, - sym_comment, - ACTIONS(864), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13533] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(346), 1, - sym_comment, - ACTIONS(880), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13550] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(347), 1, - sym_comment, - ACTIONS(872), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13567] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(348), 1, - sym_comment, - ACTIONS(870), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13584] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(349), 1, - sym_comment, - ACTIONS(868), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13601] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(350), 1, - sym_comment, - ACTIONS(892), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13618] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(351), 1, - sym_comment, - ACTIONS(838), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [13635] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(352), 1, - sym_comment, - ACTIONS(866), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13652] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(353), 1, - sym_comment, - ACTIONS(878), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13669] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(354), 1, - sym_comment, - ACTIONS(836), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [13686] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(355), 1, - sym_comment, - ACTIONS(834), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [13703] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(356), 1, - sym_comment, - ACTIONS(888), 8, + sym_line_comment, + ACTIONS(861), 8, sym_if, sym_foreach, sym_while, @@ -15672,12 +14194,707 @@ static const uint16_t ts_small_parse_table[] = { sym_endmacro, sym_message, sym_identifier, - [13720] = 3, - ACTIONS(3), 1, + [11482] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(357), 1, - sym_comment, - ACTIONS(832), 8, + sym_line_comment, + ACTIONS(781), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11497] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11512] = 3, + ACTIONS(863), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11529] = 3, + ACTIONS(865), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11546] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11561] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11576] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(789), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11591] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11606] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11621] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11636] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11651] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11666] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(769), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11681] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(801), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11696] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11711] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11726] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11741] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11756] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11771] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11786] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11801] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11816] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11831] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(817), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11846] = 3, + ACTIONS(867), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11863] = 3, + ACTIONS(869), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11880] = 3, + ACTIONS(871), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11897] = 3, + ACTIONS(873), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11914] = 3, + ACTIONS(875), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11931] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(819), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11946] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11961] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(877), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11976] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(879), 8, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [11991] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(781), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12006] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12021] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12036] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12051] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(789), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12066] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12081] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12096] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(821), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12111] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12126] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(799), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12141] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(769), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12156] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(801), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12171] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(803), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12186] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(777), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12201] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(795), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12216] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(811), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12231] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(807), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12246] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(809), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12261] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(805), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12276] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(813), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12291] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(881), 8, sym_if, sym_foreach, sym_while, @@ -15686,589 +14903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [13737] = 3, - ACTIONS(3), 1, + [12306] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(358), 1, - sym_comment, - ACTIONS(874), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13754] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(359), 1, - sym_comment, - ACTIONS(876), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13771] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(360), 1, - sym_comment, - ACTIONS(878), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13788] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(361), 1, - sym_comment, - ACTIONS(866), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13805] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(362), 1, - sym_comment, - ACTIONS(868), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13822] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(363), 1, - sym_comment, - ACTIONS(870), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13839] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(364), 1, - sym_comment, - ACTIONS(872), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13856] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(365), 1, - sym_comment, - ACTIONS(880), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13873] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(366), 1, - sym_comment, - ACTIONS(888), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13890] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(367), 1, - sym_comment, - ACTIONS(864), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13907] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(894), 1, - ts_builtin_sym_end, - STATE(368), 1, - sym_comment, - ACTIONS(874), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13926] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(896), 1, - ts_builtin_sym_end, - STATE(369), 1, - sym_comment, - ACTIONS(876), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13945] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(370), 1, - sym_comment, - ACTIONS(856), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13962] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(371), 1, - sym_comment, - ACTIONS(876), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13979] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(898), 1, - ts_builtin_sym_end, - STATE(372), 1, - sym_comment, - ACTIONS(868), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [13998] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(373), 1, - sym_comment, - ACTIONS(862), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14015] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(374), 1, - sym_comment, - ACTIONS(874), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14032] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(375), 1, - sym_comment, - ACTIONS(832), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14049] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(376), 1, - sym_comment, - ACTIONS(888), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [14066] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(377), 1, - sym_comment, - ACTIONS(834), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14083] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(378), 1, - sym_comment, - ACTIONS(836), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14100] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(379), 1, - sym_comment, - ACTIONS(860), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14117] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(900), 1, - ts_builtin_sym_end, - STATE(380), 1, - sym_comment, - ACTIONS(832), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14136] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(902), 1, - ts_builtin_sym_end, - STATE(381), 1, - sym_comment, - ACTIONS(888), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14155] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(382), 1, - sym_comment, - ACTIONS(838), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14172] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(904), 1, - ts_builtin_sym_end, - STATE(383), 1, - sym_comment, - ACTIONS(834), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14191] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(384), 1, - sym_comment, - ACTIONS(858), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14208] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(906), 1, - ts_builtin_sym_end, - STATE(385), 1, - sym_comment, - ACTIONS(870), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14227] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(908), 1, - ts_builtin_sym_end, - STATE(386), 1, - sym_comment, - ACTIONS(872), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14246] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(910), 1, - ts_builtin_sym_end, - STATE(387), 1, - sym_comment, - ACTIONS(880), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14265] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(912), 1, - ts_builtin_sym_end, - STATE(388), 1, - sym_comment, - ACTIONS(836), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14284] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(914), 1, - ts_builtin_sym_end, - STATE(389), 1, - sym_comment, - ACTIONS(838), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14303] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(916), 1, - ts_builtin_sym_end, - STATE(390), 1, - sym_comment, - ACTIONS(864), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14322] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(918), 1, - ts_builtin_sym_end, - STATE(391), 1, - sym_comment, - ACTIONS(862), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14341] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(920), 1, - ts_builtin_sym_end, - STATE(392), 1, - sym_comment, - ACTIONS(840), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14360] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(393), 1, - sym_comment, - ACTIONS(858), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14377] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(922), 1, - ts_builtin_sym_end, - STATE(394), 1, - sym_comment, - ACTIONS(842), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14396] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(395), 1, - sym_comment, - ACTIONS(854), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14413] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(924), 1, - ts_builtin_sym_end, - STATE(396), 1, - sym_comment, - ACTIONS(860), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14432] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(926), 1, - ts_builtin_sym_end, - STATE(397), 1, - sym_comment, - ACTIONS(858), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14451] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(398), 1, - sym_comment, - ACTIONS(928), 8, + sym_line_comment, + ACTIONS(883), 8, sym_if, sym_foreach, sym_while, @@ -16277,40 +14916,53 @@ static const uint16_t ts_small_parse_table[] = { sym_endmacro, sym_message, sym_identifier, - [14468] = 3, - ACTIONS(3), 1, + [12321] = 3, + ACTIONS(885), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, sym_bracket_comment, - STATE(399), 1, - sym_comment, - ACTIONS(930), 8, + sym_line_comment, + ACTIONS(801), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_message, sym_identifier, - [14485] = 3, - ACTIONS(3), 1, + [12338] = 3, + ACTIONS(887), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, sym_bracket_comment, - STATE(400), 1, - sym_comment, - ACTIONS(932), 8, + sym_line_comment, + ACTIONS(769), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_message, sym_identifier, - [14502] = 3, - ACTIONS(3), 1, + [12355] = 3, + ACTIONS(889), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, sym_bracket_comment, - STATE(401), 1, - sym_comment, - ACTIONS(934), 8, + sym_line_comment, + ACTIONS(799), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12372] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(815), 8, sym_if, sym_foreach, sym_endforeach, @@ -16319,126 +14971,26 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14519] = 3, - ACTIONS(3), 1, + [12387] = 2, + ACTIONS(3), 2, sym_bracket_comment, - STATE(402), 1, - sym_comment, - ACTIONS(852), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14536] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(403), 1, - sym_comment, - ACTIONS(840), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14553] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(404), 1, - sym_comment, - ACTIONS(842), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14570] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(405), 1, - sym_comment, - ACTIONS(850), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14587] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(406), 1, - sym_comment, - ACTIONS(848), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14604] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(407), 1, - sym_comment, - ACTIONS(846), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14621] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(408), 1, - sym_comment, - ACTIONS(844), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [14638] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(409), 1, - sym_comment, - ACTIONS(936), 8, + sym_line_comment, + ACTIONS(781), 8, sym_if, sym_foreach, sym_while, sym_function, + sym_endfunction, sym_macro, - sym_endmacro, sym_message, sym_identifier, - [14655] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(938), 1, + [12402] = 3, + ACTIONS(891), 1, ts_builtin_sym_end, - STATE(410), 1, - sym_comment, - ACTIONS(856), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(797), 7, sym_if, sym_foreach, sym_while, @@ -16446,14 +14998,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14674] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(940), 1, + [12419] = 3, + ACTIONS(893), 1, ts_builtin_sym_end, - STATE(411), 1, - sym_comment, - ACTIONS(854), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(771), 7, sym_if, sym_foreach, sym_while, @@ -16461,14 +15012,26 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14693] = 4, - ACTIONS(3), 1, + [12436] = 2, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(942), 1, + sym_line_comment, + ACTIONS(819), 8, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12451] = 3, + ACTIONS(895), 1, ts_builtin_sym_end, - STATE(412), 1, - sym_comment, - ACTIONS(852), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(793), 7, sym_if, sym_foreach, sym_while, @@ -16476,14 +15039,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14712] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(944), 1, + [12468] = 3, + ACTIONS(897), 1, ts_builtin_sym_end, - STATE(413), 1, - sym_comment, - ACTIONS(850), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(781), 7, sym_if, sym_foreach, sym_while, @@ -16491,14 +15053,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14731] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(946), 1, + [12485] = 3, + ACTIONS(899), 1, ts_builtin_sym_end, - STATE(414), 1, - sym_comment, - ACTIONS(848), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(783), 7, sym_if, sym_foreach, sym_while, @@ -16506,14 +15067,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14750] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(948), 1, + [12502] = 3, + ACTIONS(901), 1, ts_builtin_sym_end, - STATE(415), 1, - sym_comment, - ACTIONS(846), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(785), 7, sym_if, sym_foreach, sym_while, @@ -16521,14 +15081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14769] = 4, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(950), 1, + [12519] = 3, + ACTIONS(903), 1, ts_builtin_sym_end, - STATE(416), 1, - sym_comment, - ACTIONS(844), 7, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(787), 7, sym_if, sym_foreach, sym_while, @@ -16536,12 +15095,39 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_message, sym_identifier, - [14788] = 3, - ACTIONS(3), 1, + [12536] = 3, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, sym_bracket_comment, - STATE(417), 1, - sym_comment, - ACTIONS(952), 7, + sym_line_comment, + ACTIONS(789), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12553] = 3, + ACTIONS(907), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(791), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_message, + sym_identifier, + [12570] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(213), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -16549,1827 +15135,1642 @@ static const uint16_t ts_small_parse_table[] = { sym__escape_semicolon, aux_sym_variable_token1, anon_sym_RBRACE, - [14804] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - STATE(418), 1, - sym_comment, - ACTIONS(221), 7, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, + [12584] = 2, + ACTIONS(909), 1, anon_sym_RBRACE, - [14820] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - STATE(419), 1, - sym_comment, - ACTIONS(229), 7, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, + sym_line_comment, + [12592] = 2, + ACTIONS(911), 1, anon_sym_RBRACE, - [14836] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(954), 1, + sym_line_comment, + [12600] = 2, + ACTIONS(913), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12608] = 2, + ACTIONS(915), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12616] = 2, + ACTIONS(917), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12624] = 2, + ACTIONS(919), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12632] = 2, + ACTIONS(921), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12640] = 2, + ACTIONS(923), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12648] = 2, + ACTIONS(925), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12656] = 2, + ACTIONS(927), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12664] = 2, + ACTIONS(929), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12672] = 2, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12680] = 2, + ACTIONS(933), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12688] = 2, + ACTIONS(935), 1, anon_sym_DQUOTE, - STATE(420), 1, - sym_comment, - [14846] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(956), 1, + sym_line_comment, + [12696] = 2, + ACTIONS(937), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12704] = 2, + ACTIONS(939), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12712] = 2, + ACTIONS(941), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12720] = 2, + ACTIONS(943), 1, anon_sym_DQUOTE, - STATE(421), 1, - sym_comment, - [14856] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(958), 1, + sym_line_comment, + [12728] = 2, + ACTIONS(945), 1, anon_sym_RBRACE, - STATE(422), 1, - sym_comment, - [14866] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(960), 1, - anon_sym_RPAREN, - STATE(423), 1, - sym_comment, - [14876] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(962), 1, + sym_line_comment, + [12736] = 2, + ACTIONS(947), 1, anon_sym_RBRACE, - STATE(424), 1, - sym_comment, - [14886] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(964), 1, + sym_line_comment, + [12744] = 2, + ACTIONS(949), 1, anon_sym_RBRACE, - STATE(425), 1, - sym_comment, - [14896] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(966), 1, + sym_line_comment, + [12752] = 2, + ACTIONS(951), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12760] = 2, + ACTIONS(953), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12768] = 2, + ACTIONS(955), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12776] = 2, + ACTIONS(957), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12784] = 2, + ACTIONS(959), 1, anon_sym_RPAREN, - STATE(426), 1, - sym_comment, - [14906] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(968), 1, + sym_line_comment, + [12792] = 2, + ACTIONS(961), 1, anon_sym_RPAREN, - STATE(427), 1, - sym_comment, - [14916] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(217), 1, + sym_line_comment, + [12800] = 2, + ACTIONS(963), 1, anon_sym_RPAREN, - STATE(428), 1, - sym_comment, - [14926] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(970), 1, + sym_line_comment, + [12808] = 2, + ACTIONS(965), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12816] = 2, + ACTIONS(967), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12824] = 2, + ACTIONS(969), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12832] = 2, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12840] = 2, + ACTIONS(973), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12848] = 2, + ACTIONS(975), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12856] = 2, + ACTIONS(977), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12864] = 2, + ACTIONS(979), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [12872] = 2, + ACTIONS(981), 1, anon_sym_LBRACE, - STATE(429), 1, - sym_comment, - [14936] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(972), 1, + sym_line_comment, + [12880] = 2, + ACTIONS(983), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_comment, - [14946] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(233), 1, - anon_sym_RPAREN, - STATE(431), 1, - sym_comment, - [14956] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(974), 1, + sym_line_comment, + [12888] = 2, + ACTIONS(985), 1, anon_sym_RBRACE, - STATE(432), 1, - sym_comment, - [14966] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(976), 1, - anon_sym_DQUOTE, - STATE(433), 1, - sym_comment, - [14976] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12896] = 2, + ACTIONS(987), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(978), 1, - anon_sym_RPAREN, - STATE(434), 1, - sym_comment, - [14986] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(980), 1, - anon_sym_RPAREN, - STATE(435), 1, - sym_comment, - [14996] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(982), 1, - anon_sym_RPAREN, - STATE(436), 1, - sym_comment, - [15006] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(984), 1, + sym_line_comment, + [12904] = 2, + ACTIONS(989), 1, anon_sym_RBRACE, - STATE(437), 1, - sym_comment, - [15016] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(986), 1, - anon_sym_LPAREN, - STATE(438), 1, - sym_comment, - [15026] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(988), 1, - anon_sym_RBRACE, - STATE(439), 1, - sym_comment, - [15036] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(990), 1, - anon_sym_RBRACE, - STATE(440), 1, - sym_comment, - [15046] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(992), 1, + sym_line_comment, + [12912] = 2, + ACTIONS(991), 1, anon_sym_RPAREN, - STATE(441), 1, - sym_comment, - [15056] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(994), 1, - anon_sym_LPAREN, - STATE(442), 1, - sym_comment, - [15066] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(996), 1, + sym_line_comment, + [12920] = 2, + ACTIONS(993), 1, anon_sym_RPAREN, - STATE(443), 1, - sym_comment, - [15076] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(998), 1, - anon_sym_LPAREN, - STATE(444), 1, - sym_comment, - [15086] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1000), 1, + sym_line_comment, + [12928] = 2, + ACTIONS(995), 1, anon_sym_RPAREN, - STATE(445), 1, - sym_comment, - [15096] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1002), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_comment, - [15106] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1004), 1, - anon_sym_RPAREN, - STATE(447), 1, - sym_comment, - [15116] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1006), 1, - anon_sym_RBRACE, - STATE(448), 1, - sym_comment, - [15126] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1008), 1, - anon_sym_LPAREN, - STATE(449), 1, - sym_comment, - [15136] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1010), 1, - anon_sym_LPAREN, - STATE(450), 1, - sym_comment, - [15146] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1012), 1, - anon_sym_LPAREN, - STATE(451), 1, - sym_comment, - [15156] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1014), 1, - anon_sym_RBRACE, - STATE(452), 1, - sym_comment, - [15166] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1016), 1, - anon_sym_RBRACE, - STATE(453), 1, - sym_comment, - [15176] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1018), 1, - ts_builtin_sym_end, - STATE(454), 1, - sym_comment, - [15186] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1020), 1, - anon_sym_LPAREN, - STATE(455), 1, - sym_comment, - [15196] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1022), 1, - anon_sym_LPAREN, - STATE(456), 1, - sym_comment, - [15206] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1024), 1, - anon_sym_LPAREN, - STATE(457), 1, - sym_comment, - [15216] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1026), 1, - anon_sym_LPAREN, - STATE(458), 1, - sym_comment, - [15226] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1028), 1, - anon_sym_LPAREN, - STATE(459), 1, - sym_comment, - [15236] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1030), 1, - anon_sym_RBRACE, - STATE(460), 1, - sym_comment, - [15246] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1032), 1, - anon_sym_RPAREN, - STATE(461), 1, - sym_comment, - [15256] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1034), 1, - anon_sym_RPAREN, - STATE(462), 1, - sym_comment, - [15266] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1036), 1, - anon_sym_RPAREN, - STATE(463), 1, - sym_comment, - [15276] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1038), 1, - anon_sym_LPAREN, - STATE(464), 1, - sym_comment, - [15286] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1040), 1, - anon_sym_LPAREN, - STATE(465), 1, - sym_comment, - [15296] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1042), 1, - anon_sym_RBRACE, - STATE(466), 1, - sym_comment, - [15306] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1044), 1, - anon_sym_RBRACE, - STATE(467), 1, - sym_comment, - [15316] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1046), 1, - anon_sym_LPAREN, - STATE(468), 1, - sym_comment, - [15326] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1048), 1, - anon_sym_LPAREN, - STATE(469), 1, - sym_comment, - [15336] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1050), 1, - anon_sym_LPAREN, - STATE(470), 1, - sym_comment, - [15346] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1052), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_comment, - [15356] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1054), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym_comment, - [15366] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1056), 1, - anon_sym_LPAREN, - STATE(473), 1, - sym_comment, - [15376] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1058), 1, - anon_sym_LPAREN, - STATE(474), 1, - sym_comment, - [15386] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1060), 1, - anon_sym_RBRACE, - STATE(475), 1, - sym_comment, - [15396] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1062), 1, - anon_sym_RPAREN, - STATE(476), 1, - sym_comment, - [15406] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1064), 1, - anon_sym_RPAREN, - STATE(477), 1, - sym_comment, - [15416] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1066), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_comment, - [15426] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1068), 1, - anon_sym_LPAREN, - STATE(479), 1, - sym_comment, - [15436] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1070), 1, - anon_sym_LPAREN, - STATE(480), 1, - sym_comment, - [15446] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1072), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_comment, - [15456] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1074), 1, - anon_sym_LPAREN, - STATE(482), 1, - sym_comment, - [15466] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1076), 1, - anon_sym_LPAREN, - STATE(483), 1, - sym_comment, - [15476] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1078), 1, - anon_sym_LPAREN, - STATE(484), 1, - sym_comment, - [15486] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1080), 1, - anon_sym_RPAREN, - STATE(485), 1, - sym_comment, - [15496] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1082), 1, - anon_sym_DQUOTE, - STATE(486), 1, - sym_comment, - [15506] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1084), 1, - anon_sym_RBRACE, - STATE(487), 1, - sym_comment, - [15516] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1086), 1, - anon_sym_LPAREN, - STATE(488), 1, - sym_comment, - [15526] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1088), 1, - anon_sym_LPAREN, - STATE(489), 1, - sym_comment, - [15536] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1090), 1, - anon_sym_LPAREN, - STATE(490), 1, - sym_comment, - [15546] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1092), 1, - anon_sym_LPAREN, - STATE(491), 1, - sym_comment, - [15556] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1094), 1, - anon_sym_LPAREN, - STATE(492), 1, - sym_comment, - [15566] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1096), 1, - anon_sym_LPAREN, - STATE(493), 1, - sym_comment, - [15576] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1098), 1, - anon_sym_LPAREN, - STATE(494), 1, - sym_comment, - [15586] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1100), 1, - anon_sym_RBRACE, - STATE(495), 1, - sym_comment, - [15596] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1102), 1, - anon_sym_RBRACE, - STATE(496), 1, - sym_comment, - [15606] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - STATE(497), 1, - sym_comment, - [15616] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1106), 1, - anon_sym_LPAREN, - STATE(498), 1, - sym_comment, - [15626] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1108), 1, - anon_sym_LPAREN, - STATE(499), 1, - sym_comment, - [15636] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1110), 1, - anon_sym_LPAREN, - STATE(500), 1, - sym_comment, - [15646] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1112), 1, - anon_sym_LPAREN, - STATE(501), 1, - sym_comment, - [15656] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1114), 1, - anon_sym_LPAREN, - STATE(502), 1, - sym_comment, - [15666] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1116), 1, - anon_sym_LPAREN, - STATE(503), 1, - sym_comment, - [15676] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1118), 1, - anon_sym_RPAREN, - STATE(504), 1, - sym_comment, - [15686] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1120), 1, - anon_sym_RPAREN, - STATE(505), 1, - sym_comment, - [15696] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1122), 1, - anon_sym_RPAREN, - STATE(506), 1, - sym_comment, - [15706] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1124), 1, - anon_sym_LPAREN, - STATE(507), 1, - sym_comment, - [15716] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1126), 1, - anon_sym_LPAREN, - STATE(508), 1, - sym_comment, - [15726] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1128), 1, - anon_sym_LPAREN, - STATE(509), 1, - sym_comment, - [15736] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1130), 1, - anon_sym_LPAREN, - STATE(510), 1, - sym_comment, - [15746] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1132), 1, - anon_sym_LPAREN, - STATE(511), 1, - sym_comment, - [15756] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1134), 1, - anon_sym_LPAREN, - STATE(512), 1, - sym_comment, - [15766] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1136), 1, - anon_sym_LPAREN, - STATE(513), 1, - sym_comment, - [15776] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1138), 1, - anon_sym_DQUOTE, - STATE(514), 1, - sym_comment, - [15786] = 3, - ACTIONS(3), 1, - sym_bracket_comment, - ACTIONS(1140), 1, - anon_sym_RBRACE, - STATE(515), 1, - sym_comment, - [15796] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, + sym_line_comment, + [12936] = 2, ACTIONS(237), 1, anon_sym_RPAREN, - STATE(516), 1, - sym_comment, - [15806] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1142), 1, - anon_sym_LBRACE, - STATE(517), 1, - sym_comment, - [15816] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12944] = 2, + ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1144), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_comment, - [15826] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12952] = 2, + ACTIONS(999), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1146), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_comment, - [15836] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12960] = 2, + ACTIONS(1001), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1148), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_comment, - [15846] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12968] = 2, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1150), 1, - anon_sym_LBRACE, - STATE(521), 1, - sym_comment, - [15856] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12976] = 2, + ACTIONS(1005), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1152), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_comment, - [15866] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12984] = 2, + ACTIONS(1007), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1154), 1, - anon_sym_LBRACE, - STATE(523), 1, - sym_comment, - [15876] = 3, - ACTIONS(3), 1, + sym_line_comment, + [12992] = 2, + ACTIONS(1009), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1156), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_comment, - [15886] = 3, - ACTIONS(3), 1, + sym_line_comment, + [13000] = 2, + ACTIONS(1011), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1158), 1, - anon_sym_LBRACE, - STATE(525), 1, - sym_comment, - [15896] = 3, - ACTIONS(3), 1, + sym_line_comment, + [13008] = 2, + ACTIONS(1013), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_bracket_comment, - ACTIONS(1160), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_comment, - [15906] = 1, - ACTIONS(1162), 1, + sym_line_comment, + [13016] = 2, + ACTIONS(1015), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13024] = 2, + ACTIONS(221), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13032] = 2, + ACTIONS(1017), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13040] = 2, + ACTIONS(225), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13048] = 2, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13056] = 2, + ACTIONS(1021), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13064] = 2, + ACTIONS(1023), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13072] = 2, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13080] = 2, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13088] = 2, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13096] = 2, + ACTIONS(1031), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13104] = 2, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13112] = 2, + ACTIONS(1035), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13120] = 2, + ACTIONS(1037), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13128] = 2, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13136] = 2, + ACTIONS(1041), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13144] = 2, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13152] = 2, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13160] = 2, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13168] = 2, + ACTIONS(1049), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13176] = 2, + ACTIONS(1051), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13184] = 2, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13192] = 2, + ACTIONS(1055), 1, ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13200] = 2, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13208] = 2, + ACTIONS(1059), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13216] = 2, + ACTIONS(1061), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13224] = 2, + ACTIONS(1063), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13232] = 2, + ACTIONS(1065), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13240] = 2, + ACTIONS(1067), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13248] = 2, + ACTIONS(1069), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13256] = 2, + ACTIONS(1071), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13264] = 2, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13272] = 2, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13280] = 2, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13288] = 2, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13296] = 2, + ACTIONS(1081), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13304] = 2, + ACTIONS(1083), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13312] = 2, + ACTIONS(1085), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13320] = 2, + ACTIONS(1087), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13328] = 2, + ACTIONS(1089), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13336] = 2, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13344] = 2, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13352] = 2, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13360] = 2, + ACTIONS(1097), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13368] = 2, + ACTIONS(1099), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13376] = 2, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13384] = 2, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13392] = 2, + ACTIONS(1105), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13400] = 2, + ACTIONS(1107), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13408] = 2, + ACTIONS(1109), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13416] = 2, + ACTIONS(1111), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13424] = 2, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [13432] = 2, + ACTIONS(1115), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(24)] = 0, - [SMALL_STATE(25)] = 67, - [SMALL_STATE(26)] = 134, - [SMALL_STATE(27)] = 201, - [SMALL_STATE(28)] = 268, - [SMALL_STATE(29)] = 335, - [SMALL_STATE(30)] = 402, - [SMALL_STATE(31)] = 469, - [SMALL_STATE(32)] = 536, - [SMALL_STATE(33)] = 603, - [SMALL_STATE(34)] = 670, - [SMALL_STATE(35)] = 737, - [SMALL_STATE(36)] = 812, - [SMALL_STATE(37)] = 889, - [SMALL_STATE(38)] = 966, - [SMALL_STATE(39)] = 1043, - [SMALL_STATE(40)] = 1120, - [SMALL_STATE(41)] = 1197, - [SMALL_STATE(42)] = 1274, - [SMALL_STATE(43)] = 1351, - [SMALL_STATE(44)] = 1428, - [SMALL_STATE(45)] = 1505, - [SMALL_STATE(46)] = 1582, - [SMALL_STATE(47)] = 1659, - [SMALL_STATE(48)] = 1736, - [SMALL_STATE(49)] = 1797, - [SMALL_STATE(50)] = 1856, - [SMALL_STATE(51)] = 1925, - [SMALL_STATE(52)] = 1994, - [SMALL_STATE(53)] = 2061, - [SMALL_STATE(54)] = 2133, - [SMALL_STATE(55)] = 2205, - [SMALL_STATE(56)] = 2277, - [SMALL_STATE(57)] = 2349, - [SMALL_STATE(58)] = 2419, - [SMALL_STATE(59)] = 2491, - [SMALL_STATE(60)] = 2563, - [SMALL_STATE(61)] = 2635, - [SMALL_STATE(62)] = 2707, - [SMALL_STATE(63)] = 2779, - [SMALL_STATE(64)] = 2851, - [SMALL_STATE(65)] = 2923, - [SMALL_STATE(66)] = 2990, - [SMALL_STATE(67)] = 3026, - [SMALL_STATE(68)] = 3062, - [SMALL_STATE(69)] = 3098, - [SMALL_STATE(70)] = 3134, - [SMALL_STATE(71)] = 3170, - [SMALL_STATE(72)] = 3206, - [SMALL_STATE(73)] = 3242, - [SMALL_STATE(74)] = 3278, - [SMALL_STATE(75)] = 3314, - [SMALL_STATE(76)] = 3350, - [SMALL_STATE(77)] = 3386, - [SMALL_STATE(78)] = 3439, - [SMALL_STATE(79)] = 3490, - [SMALL_STATE(80)] = 3554, - [SMALL_STATE(81)] = 3618, - [SMALL_STATE(82)] = 3680, - [SMALL_STATE(83)] = 3742, - [SMALL_STATE(84)] = 3804, - [SMALL_STATE(85)] = 3868, - [SMALL_STATE(86)] = 3930, - [SMALL_STATE(87)] = 3994, - [SMALL_STATE(88)] = 4058, - [SMALL_STATE(89)] = 4120, - [SMALL_STATE(90)] = 4184, - [SMALL_STATE(91)] = 4246, - [SMALL_STATE(92)] = 4308, - [SMALL_STATE(93)] = 4370, - [SMALL_STATE(94)] = 4432, - [SMALL_STATE(95)] = 4496, - [SMALL_STATE(96)] = 4558, - [SMALL_STATE(97)] = 4622, - [SMALL_STATE(98)] = 4686, - [SMALL_STATE(99)] = 4748, - [SMALL_STATE(100)] = 4810, - [SMALL_STATE(101)] = 4872, - [SMALL_STATE(102)] = 4934, - [SMALL_STATE(103)] = 4996, - [SMALL_STATE(104)] = 5060, - [SMALL_STATE(105)] = 5120, - [SMALL_STATE(106)] = 5182, - [SMALL_STATE(107)] = 5246, - [SMALL_STATE(108)] = 5310, - [SMALL_STATE(109)] = 5372, - [SMALL_STATE(110)] = 5436, - [SMALL_STATE(111)] = 5500, - [SMALL_STATE(112)] = 5564, - [SMALL_STATE(113)] = 5626, - [SMALL_STATE(114)] = 5688, - [SMALL_STATE(115)] = 5752, - [SMALL_STATE(116)] = 5816, - [SMALL_STATE(117)] = 5880, - [SMALL_STATE(118)] = 5942, - [SMALL_STATE(119)] = 6004, - [SMALL_STATE(120)] = 6068, - [SMALL_STATE(121)] = 6130, - [SMALL_STATE(122)] = 6194, - [SMALL_STATE(123)] = 6256, - [SMALL_STATE(124)] = 6318, - [SMALL_STATE(125)] = 6380, - [SMALL_STATE(126)] = 6444, - [SMALL_STATE(127)] = 6506, - [SMALL_STATE(128)] = 6568, - [SMALL_STATE(129)] = 6630, - [SMALL_STATE(130)] = 6694, - [SMALL_STATE(131)] = 6756, - [SMALL_STATE(132)] = 6818, - [SMALL_STATE(133)] = 6880, - [SMALL_STATE(134)] = 6942, - [SMALL_STATE(135)] = 7006, - [SMALL_STATE(136)] = 7068, - [SMALL_STATE(137)] = 7132, - [SMALL_STATE(138)] = 7196, - [SMALL_STATE(139)] = 7260, - [SMALL_STATE(140)] = 7324, - [SMALL_STATE(141)] = 7388, - [SMALL_STATE(142)] = 7452, - [SMALL_STATE(143)] = 7514, - [SMALL_STATE(144)] = 7578, - [SMALL_STATE(145)] = 7642, - [SMALL_STATE(146)] = 7704, - [SMALL_STATE(147)] = 7766, - [SMALL_STATE(148)] = 7830, - [SMALL_STATE(149)] = 7894, - [SMALL_STATE(150)] = 7958, - [SMALL_STATE(151)] = 8022, - [SMALL_STATE(152)] = 8086, - [SMALL_STATE(153)] = 8150, - [SMALL_STATE(154)] = 8214, - [SMALL_STATE(155)] = 8276, - [SMALL_STATE(156)] = 8340, - [SMALL_STATE(157)] = 8402, - [SMALL_STATE(158)] = 8466, - [SMALL_STATE(159)] = 8530, - [SMALL_STATE(160)] = 8592, - [SMALL_STATE(161)] = 8654, - [SMALL_STATE(162)] = 8716, - [SMALL_STATE(163)] = 8778, - [SMALL_STATE(164)] = 8842, - [SMALL_STATE(165)] = 8904, - [SMALL_STATE(166)] = 8966, - [SMALL_STATE(167)] = 9030, - [SMALL_STATE(168)] = 9094, - [SMALL_STATE(169)] = 9153, - [SMALL_STATE(170)] = 9212, - [SMALL_STATE(171)] = 9271, - [SMALL_STATE(172)] = 9330, - [SMALL_STATE(173)] = 9389, - [SMALL_STATE(174)] = 9448, - [SMALL_STATE(175)] = 9507, - [SMALL_STATE(176)] = 9566, - [SMALL_STATE(177)] = 9625, - [SMALL_STATE(178)] = 9684, - [SMALL_STATE(179)] = 9745, - [SMALL_STATE(180)] = 9804, - [SMALL_STATE(181)] = 9850, - [SMALL_STATE(182)] = 9898, - [SMALL_STATE(183)] = 9947, - [SMALL_STATE(184)] = 9996, - [SMALL_STATE(185)] = 10045, - [SMALL_STATE(186)] = 10094, - [SMALL_STATE(187)] = 10143, - [SMALL_STATE(188)] = 10171, - [SMALL_STATE(189)] = 10199, - [SMALL_STATE(190)] = 10227, - [SMALL_STATE(191)] = 10255, - [SMALL_STATE(192)] = 10299, - [SMALL_STATE(193)] = 10345, - [SMALL_STATE(194)] = 10389, - [SMALL_STATE(195)] = 10417, - [SMALL_STATE(196)] = 10445, - [SMALL_STATE(197)] = 10491, - [SMALL_STATE(198)] = 10519, - [SMALL_STATE(199)] = 10547, - [SMALL_STATE(200)] = 10575, - [SMALL_STATE(201)] = 10603, - [SMALL_STATE(202)] = 10631, - [SMALL_STATE(203)] = 10654, - [SMALL_STATE(204)] = 10677, - [SMALL_STATE(205)] = 10700, - [SMALL_STATE(206)] = 10723, - [SMALL_STATE(207)] = 10746, - [SMALL_STATE(208)] = 10769, - [SMALL_STATE(209)] = 10792, - [SMALL_STATE(210)] = 10815, - [SMALL_STATE(211)] = 10838, - [SMALL_STATE(212)] = 10861, - [SMALL_STATE(213)] = 10884, - [SMALL_STATE(214)] = 10903, - [SMALL_STATE(215)] = 10924, - [SMALL_STATE(216)] = 10955, - [SMALL_STATE(217)] = 10986, - [SMALL_STATE(218)] = 11017, - [SMALL_STATE(219)] = 11048, - [SMALL_STATE(220)] = 11079, - [SMALL_STATE(221)] = 11110, - [SMALL_STATE(222)] = 11141, - [SMALL_STATE(223)] = 11172, - [SMALL_STATE(224)] = 11203, - [SMALL_STATE(225)] = 11234, - [SMALL_STATE(226)] = 11265, - [SMALL_STATE(227)] = 11296, - [SMALL_STATE(228)] = 11327, - [SMALL_STATE(229)] = 11358, - [SMALL_STATE(230)] = 11389, - [SMALL_STATE(231)] = 11408, - [SMALL_STATE(232)] = 11439, - [SMALL_STATE(233)] = 11458, - [SMALL_STATE(234)] = 11489, - [SMALL_STATE(235)] = 11520, - [SMALL_STATE(236)] = 11551, - [SMALL_STATE(237)] = 11570, - [SMALL_STATE(238)] = 11589, - [SMALL_STATE(239)] = 11608, - [SMALL_STATE(240)] = 11627, - [SMALL_STATE(241)] = 11656, - [SMALL_STATE(242)] = 11675, - [SMALL_STATE(243)] = 11694, - [SMALL_STATE(244)] = 11713, - [SMALL_STATE(245)] = 11732, - [SMALL_STATE(246)] = 11751, - [SMALL_STATE(247)] = 11770, - [SMALL_STATE(248)] = 11789, - [SMALL_STATE(249)] = 11808, - [SMALL_STATE(250)] = 11827, - [SMALL_STATE(251)] = 11846, - [SMALL_STATE(252)] = 11865, - [SMALL_STATE(253)] = 11884, - [SMALL_STATE(254)] = 11903, - [SMALL_STATE(255)] = 11922, - [SMALL_STATE(256)] = 11941, - [SMALL_STATE(257)] = 11960, - [SMALL_STATE(258)] = 11979, - [SMALL_STATE(259)] = 11998, - [SMALL_STATE(260)] = 12017, - [SMALL_STATE(261)] = 12036, - [SMALL_STATE(262)] = 12055, - [SMALL_STATE(263)] = 12074, - [SMALL_STATE(264)] = 12095, - [SMALL_STATE(265)] = 12116, - [SMALL_STATE(266)] = 12135, - [SMALL_STATE(267)] = 12154, - [SMALL_STATE(268)] = 12173, - [SMALL_STATE(269)] = 12194, - [SMALL_STATE(270)] = 12213, - [SMALL_STATE(271)] = 12232, - [SMALL_STATE(272)] = 12251, - [SMALL_STATE(273)] = 12270, - [SMALL_STATE(274)] = 12289, - [SMALL_STATE(275)] = 12308, - [SMALL_STATE(276)] = 12327, - [SMALL_STATE(277)] = 12348, - [SMALL_STATE(278)] = 12369, - [SMALL_STATE(279)] = 12390, - [SMALL_STATE(280)] = 12409, - [SMALL_STATE(281)] = 12426, - [SMALL_STATE(282)] = 12443, - [SMALL_STATE(283)] = 12460, - [SMALL_STATE(284)] = 12477, - [SMALL_STATE(285)] = 12494, - [SMALL_STATE(286)] = 12511, - [SMALL_STATE(287)] = 12528, - [SMALL_STATE(288)] = 12545, - [SMALL_STATE(289)] = 12562, - [SMALL_STATE(290)] = 12579, - [SMALL_STATE(291)] = 12596, - [SMALL_STATE(292)] = 12613, - [SMALL_STATE(293)] = 12630, - [SMALL_STATE(294)] = 12647, - [SMALL_STATE(295)] = 12664, - [SMALL_STATE(296)] = 12681, - [SMALL_STATE(297)] = 12698, - [SMALL_STATE(298)] = 12715, - [SMALL_STATE(299)] = 12732, - [SMALL_STATE(300)] = 12749, - [SMALL_STATE(301)] = 12766, - [SMALL_STATE(302)] = 12783, - [SMALL_STATE(303)] = 12800, - [SMALL_STATE(304)] = 12817, - [SMALL_STATE(305)] = 12834, - [SMALL_STATE(306)] = 12851, - [SMALL_STATE(307)] = 12868, - [SMALL_STATE(308)] = 12885, - [SMALL_STATE(309)] = 12902, - [SMALL_STATE(310)] = 12919, - [SMALL_STATE(311)] = 12936, - [SMALL_STATE(312)] = 12953, - [SMALL_STATE(313)] = 12970, - [SMALL_STATE(314)] = 12987, - [SMALL_STATE(315)] = 13004, - [SMALL_STATE(316)] = 13021, - [SMALL_STATE(317)] = 13038, - [SMALL_STATE(318)] = 13055, - [SMALL_STATE(319)] = 13072, - [SMALL_STATE(320)] = 13089, - [SMALL_STATE(321)] = 13106, - [SMALL_STATE(322)] = 13123, - [SMALL_STATE(323)] = 13140, - [SMALL_STATE(324)] = 13157, - [SMALL_STATE(325)] = 13174, - [SMALL_STATE(326)] = 13191, - [SMALL_STATE(327)] = 13208, - [SMALL_STATE(328)] = 13225, - [SMALL_STATE(329)] = 13242, - [SMALL_STATE(330)] = 13259, - [SMALL_STATE(331)] = 13276, - [SMALL_STATE(332)] = 13293, - [SMALL_STATE(333)] = 13310, - [SMALL_STATE(334)] = 13327, - [SMALL_STATE(335)] = 13344, - [SMALL_STATE(336)] = 13361, - [SMALL_STATE(337)] = 13378, - [SMALL_STATE(338)] = 13395, - [SMALL_STATE(339)] = 13412, - [SMALL_STATE(340)] = 13429, - [SMALL_STATE(341)] = 13446, - [SMALL_STATE(342)] = 13463, - [SMALL_STATE(343)] = 13482, - [SMALL_STATE(344)] = 13499, - [SMALL_STATE(345)] = 13516, - [SMALL_STATE(346)] = 13533, - [SMALL_STATE(347)] = 13550, - [SMALL_STATE(348)] = 13567, - [SMALL_STATE(349)] = 13584, - [SMALL_STATE(350)] = 13601, - [SMALL_STATE(351)] = 13618, - [SMALL_STATE(352)] = 13635, - [SMALL_STATE(353)] = 13652, - [SMALL_STATE(354)] = 13669, - [SMALL_STATE(355)] = 13686, - [SMALL_STATE(356)] = 13703, - [SMALL_STATE(357)] = 13720, - [SMALL_STATE(358)] = 13737, - [SMALL_STATE(359)] = 13754, - [SMALL_STATE(360)] = 13771, - [SMALL_STATE(361)] = 13788, - [SMALL_STATE(362)] = 13805, - [SMALL_STATE(363)] = 13822, - [SMALL_STATE(364)] = 13839, - [SMALL_STATE(365)] = 13856, - [SMALL_STATE(366)] = 13873, - [SMALL_STATE(367)] = 13890, - [SMALL_STATE(368)] = 13907, - [SMALL_STATE(369)] = 13926, - [SMALL_STATE(370)] = 13945, - [SMALL_STATE(371)] = 13962, - [SMALL_STATE(372)] = 13979, - [SMALL_STATE(373)] = 13998, - [SMALL_STATE(374)] = 14015, - [SMALL_STATE(375)] = 14032, - [SMALL_STATE(376)] = 14049, - [SMALL_STATE(377)] = 14066, - [SMALL_STATE(378)] = 14083, - [SMALL_STATE(379)] = 14100, - [SMALL_STATE(380)] = 14117, - [SMALL_STATE(381)] = 14136, - [SMALL_STATE(382)] = 14155, - [SMALL_STATE(383)] = 14172, - [SMALL_STATE(384)] = 14191, - [SMALL_STATE(385)] = 14208, - [SMALL_STATE(386)] = 14227, - [SMALL_STATE(387)] = 14246, - [SMALL_STATE(388)] = 14265, - [SMALL_STATE(389)] = 14284, - [SMALL_STATE(390)] = 14303, - [SMALL_STATE(391)] = 14322, - [SMALL_STATE(392)] = 14341, - [SMALL_STATE(393)] = 14360, - [SMALL_STATE(394)] = 14377, - [SMALL_STATE(395)] = 14396, - [SMALL_STATE(396)] = 14413, - [SMALL_STATE(397)] = 14432, - [SMALL_STATE(398)] = 14451, - [SMALL_STATE(399)] = 14468, - [SMALL_STATE(400)] = 14485, - [SMALL_STATE(401)] = 14502, - [SMALL_STATE(402)] = 14519, - [SMALL_STATE(403)] = 14536, - [SMALL_STATE(404)] = 14553, - [SMALL_STATE(405)] = 14570, - [SMALL_STATE(406)] = 14587, - [SMALL_STATE(407)] = 14604, - [SMALL_STATE(408)] = 14621, - [SMALL_STATE(409)] = 14638, - [SMALL_STATE(410)] = 14655, - [SMALL_STATE(411)] = 14674, - [SMALL_STATE(412)] = 14693, - [SMALL_STATE(413)] = 14712, - [SMALL_STATE(414)] = 14731, - [SMALL_STATE(415)] = 14750, - [SMALL_STATE(416)] = 14769, - [SMALL_STATE(417)] = 14788, - [SMALL_STATE(418)] = 14804, - [SMALL_STATE(419)] = 14820, - [SMALL_STATE(420)] = 14836, - [SMALL_STATE(421)] = 14846, - [SMALL_STATE(422)] = 14856, - [SMALL_STATE(423)] = 14866, - [SMALL_STATE(424)] = 14876, - [SMALL_STATE(425)] = 14886, - [SMALL_STATE(426)] = 14896, - [SMALL_STATE(427)] = 14906, - [SMALL_STATE(428)] = 14916, - [SMALL_STATE(429)] = 14926, - [SMALL_STATE(430)] = 14936, - [SMALL_STATE(431)] = 14946, - [SMALL_STATE(432)] = 14956, - [SMALL_STATE(433)] = 14966, - [SMALL_STATE(434)] = 14976, - [SMALL_STATE(435)] = 14986, - [SMALL_STATE(436)] = 14996, - [SMALL_STATE(437)] = 15006, - [SMALL_STATE(438)] = 15016, - [SMALL_STATE(439)] = 15026, - [SMALL_STATE(440)] = 15036, - [SMALL_STATE(441)] = 15046, - [SMALL_STATE(442)] = 15056, - [SMALL_STATE(443)] = 15066, - [SMALL_STATE(444)] = 15076, - [SMALL_STATE(445)] = 15086, - [SMALL_STATE(446)] = 15096, - [SMALL_STATE(447)] = 15106, - [SMALL_STATE(448)] = 15116, - [SMALL_STATE(449)] = 15126, - [SMALL_STATE(450)] = 15136, - [SMALL_STATE(451)] = 15146, - [SMALL_STATE(452)] = 15156, - [SMALL_STATE(453)] = 15166, - [SMALL_STATE(454)] = 15176, - [SMALL_STATE(455)] = 15186, - [SMALL_STATE(456)] = 15196, - [SMALL_STATE(457)] = 15206, - [SMALL_STATE(458)] = 15216, - [SMALL_STATE(459)] = 15226, - [SMALL_STATE(460)] = 15236, - [SMALL_STATE(461)] = 15246, - [SMALL_STATE(462)] = 15256, - [SMALL_STATE(463)] = 15266, - [SMALL_STATE(464)] = 15276, - [SMALL_STATE(465)] = 15286, - [SMALL_STATE(466)] = 15296, - [SMALL_STATE(467)] = 15306, - [SMALL_STATE(468)] = 15316, - [SMALL_STATE(469)] = 15326, - [SMALL_STATE(470)] = 15336, - [SMALL_STATE(471)] = 15346, - [SMALL_STATE(472)] = 15356, - [SMALL_STATE(473)] = 15366, - [SMALL_STATE(474)] = 15376, - [SMALL_STATE(475)] = 15386, - [SMALL_STATE(476)] = 15396, - [SMALL_STATE(477)] = 15406, - [SMALL_STATE(478)] = 15416, - [SMALL_STATE(479)] = 15426, - [SMALL_STATE(480)] = 15436, - [SMALL_STATE(481)] = 15446, - [SMALL_STATE(482)] = 15456, - [SMALL_STATE(483)] = 15466, - [SMALL_STATE(484)] = 15476, - [SMALL_STATE(485)] = 15486, - [SMALL_STATE(486)] = 15496, - [SMALL_STATE(487)] = 15506, - [SMALL_STATE(488)] = 15516, - [SMALL_STATE(489)] = 15526, - [SMALL_STATE(490)] = 15536, - [SMALL_STATE(491)] = 15546, - [SMALL_STATE(492)] = 15556, - [SMALL_STATE(493)] = 15566, - [SMALL_STATE(494)] = 15576, - [SMALL_STATE(495)] = 15586, - [SMALL_STATE(496)] = 15596, - [SMALL_STATE(497)] = 15606, - [SMALL_STATE(498)] = 15616, - [SMALL_STATE(499)] = 15626, - [SMALL_STATE(500)] = 15636, - [SMALL_STATE(501)] = 15646, - [SMALL_STATE(502)] = 15656, - [SMALL_STATE(503)] = 15666, - [SMALL_STATE(504)] = 15676, - [SMALL_STATE(505)] = 15686, - [SMALL_STATE(506)] = 15696, - [SMALL_STATE(507)] = 15706, - [SMALL_STATE(508)] = 15716, - [SMALL_STATE(509)] = 15726, - [SMALL_STATE(510)] = 15736, - [SMALL_STATE(511)] = 15746, - [SMALL_STATE(512)] = 15756, - [SMALL_STATE(513)] = 15766, - [SMALL_STATE(514)] = 15776, - [SMALL_STATE(515)] = 15786, - [SMALL_STATE(516)] = 15796, - [SMALL_STATE(517)] = 15806, - [SMALL_STATE(518)] = 15816, - [SMALL_STATE(519)] = 15826, - [SMALL_STATE(520)] = 15836, - [SMALL_STATE(521)] = 15846, - [SMALL_STATE(522)] = 15856, - [SMALL_STATE(523)] = 15866, - [SMALL_STATE(524)] = 15876, - [SMALL_STATE(525)] = 15886, - [SMALL_STATE(526)] = 15896, - [SMALL_STATE(527)] = 15906, + [SMALL_STATE(25)] = 65, + [SMALL_STATE(26)] = 130, + [SMALL_STATE(27)] = 195, + [SMALL_STATE(28)] = 260, + [SMALL_STATE(29)] = 325, + [SMALL_STATE(30)] = 390, + [SMALL_STATE(31)] = 455, + [SMALL_STATE(32)] = 520, + [SMALL_STATE(33)] = 589, + [SMALL_STATE(34)] = 658, + [SMALL_STATE(35)] = 727, + [SMALL_STATE(36)] = 796, + [SMALL_STATE(37)] = 865, + [SMALL_STATE(38)] = 934, + [SMALL_STATE(39)] = 1003, + [SMALL_STATE(40)] = 1072, + [SMALL_STATE(41)] = 1141, + [SMALL_STATE(42)] = 1210, + [SMALL_STATE(43)] = 1279, + [SMALL_STATE(44)] = 1348, + [SMALL_STATE(45)] = 1417, + [SMALL_STATE(46)] = 1472, + [SMALL_STATE(47)] = 1527, + [SMALL_STATE(48)] = 1588, + [SMALL_STATE(49)] = 1649, + [SMALL_STATE(50)] = 1710, + [SMALL_STATE(51)] = 1776, + [SMALL_STATE(52)] = 1842, + [SMALL_STATE(53)] = 1908, + [SMALL_STATE(54)] = 1974, + [SMALL_STATE(55)] = 2040, + [SMALL_STATE(56)] = 2106, + [SMALL_STATE(57)] = 2172, + [SMALL_STATE(58)] = 2238, + [SMALL_STATE(59)] = 2304, + [SMALL_STATE(60)] = 2370, + [SMALL_STATE(61)] = 2436, + [SMALL_STATE(62)] = 2502, + [SMALL_STATE(63)] = 2565, + [SMALL_STATE(64)] = 2599, + [SMALL_STATE(65)] = 2633, + [SMALL_STATE(66)] = 2667, + [SMALL_STATE(67)] = 2701, + [SMALL_STATE(68)] = 2735, + [SMALL_STATE(69)] = 2769, + [SMALL_STATE(70)] = 2803, + [SMALL_STATE(71)] = 2837, + [SMALL_STATE(72)] = 2884, + [SMALL_STATE(73)] = 2931, + [SMALL_STATE(74)] = 2985, + [SMALL_STATE(75)] = 3039, + [SMALL_STATE(76)] = 3093, + [SMALL_STATE(77)] = 3151, + [SMALL_STATE(78)] = 3209, + [SMALL_STATE(79)] = 3263, + [SMALL_STATE(80)] = 3321, + [SMALL_STATE(81)] = 3375, + [SMALL_STATE(82)] = 3433, + [SMALL_STATE(83)] = 3487, + [SMALL_STATE(84)] = 3545, + [SMALL_STATE(85)] = 3603, + [SMALL_STATE(86)] = 3657, + [SMALL_STATE(87)] = 3711, + [SMALL_STATE(88)] = 3765, + [SMALL_STATE(89)] = 3819, + [SMALL_STATE(90)] = 3877, + [SMALL_STATE(91)] = 3931, + [SMALL_STATE(92)] = 3989, + [SMALL_STATE(93)] = 4047, + [SMALL_STATE(94)] = 4105, + [SMALL_STATE(95)] = 4163, + [SMALL_STATE(96)] = 4221, + [SMALL_STATE(97)] = 4279, + [SMALL_STATE(98)] = 4333, + [SMALL_STATE(99)] = 4391, + [SMALL_STATE(100)] = 4445, + [SMALL_STATE(101)] = 4499, + [SMALL_STATE(102)] = 4553, + [SMALL_STATE(103)] = 4607, + [SMALL_STATE(104)] = 4661, + [SMALL_STATE(105)] = 4715, + [SMALL_STATE(106)] = 4769, + [SMALL_STATE(107)] = 4827, + [SMALL_STATE(108)] = 4881, + [SMALL_STATE(109)] = 4939, + [SMALL_STATE(110)] = 4997, + [SMALL_STATE(111)] = 5055, + [SMALL_STATE(112)] = 5113, + [SMALL_STATE(113)] = 5167, + [SMALL_STATE(114)] = 5225, + [SMALL_STATE(115)] = 5279, + [SMALL_STATE(116)] = 5337, + [SMALL_STATE(117)] = 5391, + [SMALL_STATE(118)] = 5449, + [SMALL_STATE(119)] = 5503, + [SMALL_STATE(120)] = 5561, + [SMALL_STATE(121)] = 5619, + [SMALL_STATE(122)] = 5677, + [SMALL_STATE(123)] = 5735, + [SMALL_STATE(124)] = 5793, + [SMALL_STATE(125)] = 5851, + [SMALL_STATE(126)] = 5909, + [SMALL_STATE(127)] = 5967, + [SMALL_STATE(128)] = 6025, + [SMALL_STATE(129)] = 6083, + [SMALL_STATE(130)] = 6141, + [SMALL_STATE(131)] = 6195, + [SMALL_STATE(132)] = 6249, + [SMALL_STATE(133)] = 6307, + [SMALL_STATE(134)] = 6365, + [SMALL_STATE(135)] = 6423, + [SMALL_STATE(136)] = 6477, + [SMALL_STATE(137)] = 6535, + [SMALL_STATE(138)] = 6593, + [SMALL_STATE(139)] = 6647, + [SMALL_STATE(140)] = 6701, + [SMALL_STATE(141)] = 6755, + [SMALL_STATE(142)] = 6809, + [SMALL_STATE(143)] = 6863, + [SMALL_STATE(144)] = 6917, + [SMALL_STATE(145)] = 6971, + [SMALL_STATE(146)] = 7025, + [SMALL_STATE(147)] = 7079, + [SMALL_STATE(148)] = 7137, + [SMALL_STATE(149)] = 7195, + [SMALL_STATE(150)] = 7253, + [SMALL_STATE(151)] = 7311, + [SMALL_STATE(152)] = 7365, + [SMALL_STATE(153)] = 7423, + [SMALL_STATE(154)] = 7477, + [SMALL_STATE(155)] = 7535, + [SMALL_STATE(156)] = 7593, + [SMALL_STATE(157)] = 7651, + [SMALL_STATE(158)] = 7705, + [SMALL_STATE(159)] = 7759, + [SMALL_STATE(160)] = 7817, + [SMALL_STATE(161)] = 7871, + [SMALL_STATE(162)] = 7929, + [SMALL_STATE(163)] = 7984, + [SMALL_STATE(164)] = 8037, + [SMALL_STATE(165)] = 8092, + [SMALL_STATE(166)] = 8147, + [SMALL_STATE(167)] = 8200, + [SMALL_STATE(168)] = 8253, + [SMALL_STATE(169)] = 8308, + [SMALL_STATE(170)] = 8361, + [SMALL_STATE(171)] = 8414, + [SMALL_STATE(172)] = 8469, + [SMALL_STATE(173)] = 8522, + [SMALL_STATE(174)] = 8577, + [SMALL_STATE(175)] = 8619, + [SMALL_STATE(176)] = 8661, + [SMALL_STATE(177)] = 8704, + [SMALL_STATE(178)] = 8747, + [SMALL_STATE(179)] = 8790, + [SMALL_STATE(180)] = 8833, + [SMALL_STATE(181)] = 8876, + [SMALL_STATE(182)] = 8902, + [SMALL_STATE(183)] = 8928, + [SMALL_STATE(184)] = 8954, + [SMALL_STATE(185)] = 8994, + [SMALL_STATE(186)] = 9034, + [SMALL_STATE(187)] = 9060, + [SMALL_STATE(188)] = 9086, + [SMALL_STATE(189)] = 9126, + [SMALL_STATE(190)] = 9166, + [SMALL_STATE(191)] = 9192, + [SMALL_STATE(192)] = 9218, + [SMALL_STATE(193)] = 9244, + [SMALL_STATE(194)] = 9265, + [SMALL_STATE(195)] = 9286, + [SMALL_STATE(196)] = 9307, + [SMALL_STATE(197)] = 9328, + [SMALL_STATE(198)] = 9349, + [SMALL_STATE(199)] = 9370, + [SMALL_STATE(200)] = 9391, + [SMALL_STATE(201)] = 9412, + [SMALL_STATE(202)] = 9429, + [SMALL_STATE(203)] = 9446, + [SMALL_STATE(204)] = 9471, + [SMALL_STATE(205)] = 9496, + [SMALL_STATE(206)] = 9513, + [SMALL_STATE(207)] = 9538, + [SMALL_STATE(208)] = 9563, + [SMALL_STATE(209)] = 9588, + [SMALL_STATE(210)] = 9605, + [SMALL_STATE(211)] = 9622, + [SMALL_STATE(212)] = 9647, + [SMALL_STATE(213)] = 9672, + [SMALL_STATE(214)] = 9689, + [SMALL_STATE(215)] = 9714, + [SMALL_STATE(216)] = 9731, + [SMALL_STATE(217)] = 9756, + [SMALL_STATE(218)] = 9773, + [SMALL_STATE(219)] = 9790, + [SMALL_STATE(220)] = 9807, + [SMALL_STATE(221)] = 9832, + [SMALL_STATE(222)] = 9857, + [SMALL_STATE(223)] = 9874, + [SMALL_STATE(224)] = 9891, + [SMALL_STATE(225)] = 9908, + [SMALL_STATE(226)] = 9925, + [SMALL_STATE(227)] = 9942, + [SMALL_STATE(228)] = 9959, + [SMALL_STATE(229)] = 9976, + [SMALL_STATE(230)] = 10001, + [SMALL_STATE(231)] = 10026, + [SMALL_STATE(232)] = 10043, + [SMALL_STATE(233)] = 10068, + [SMALL_STATE(234)] = 10085, + [SMALL_STATE(235)] = 10102, + [SMALL_STATE(236)] = 10127, + [SMALL_STATE(237)] = 10144, + [SMALL_STATE(238)] = 10161, + [SMALL_STATE(239)] = 10178, + [SMALL_STATE(240)] = 10195, + [SMALL_STATE(241)] = 10212, + [SMALL_STATE(242)] = 10229, + [SMALL_STATE(243)] = 10246, + [SMALL_STATE(244)] = 10271, + [SMALL_STATE(245)] = 10288, + [SMALL_STATE(246)] = 10305, + [SMALL_STATE(247)] = 10330, + [SMALL_STATE(248)] = 10347, + [SMALL_STATE(249)] = 10364, + [SMALL_STATE(250)] = 10381, + [SMALL_STATE(251)] = 10406, + [SMALL_STATE(252)] = 10431, + [SMALL_STATE(253)] = 10456, + [SMALL_STATE(254)] = 10475, + [SMALL_STATE(255)] = 10494, + [SMALL_STATE(256)] = 10511, + [SMALL_STATE(257)] = 10530, + [SMALL_STATE(258)] = 10549, + [SMALL_STATE(259)] = 10568, + [SMALL_STATE(260)] = 10585, + [SMALL_STATE(261)] = 10602, + [SMALL_STATE(262)] = 10617, + [SMALL_STATE(263)] = 10632, + [SMALL_STATE(264)] = 10647, + [SMALL_STATE(265)] = 10662, + [SMALL_STATE(266)] = 10677, + [SMALL_STATE(267)] = 10692, + [SMALL_STATE(268)] = 10707, + [SMALL_STATE(269)] = 10722, + [SMALL_STATE(270)] = 10737, + [SMALL_STATE(271)] = 10752, + [SMALL_STATE(272)] = 10767, + [SMALL_STATE(273)] = 10782, + [SMALL_STATE(274)] = 10797, + [SMALL_STATE(275)] = 10812, + [SMALL_STATE(276)] = 10827, + [SMALL_STATE(277)] = 10842, + [SMALL_STATE(278)] = 10857, + [SMALL_STATE(279)] = 10872, + [SMALL_STATE(280)] = 10887, + [SMALL_STATE(281)] = 10902, + [SMALL_STATE(282)] = 10917, + [SMALL_STATE(283)] = 10932, + [SMALL_STATE(284)] = 10947, + [SMALL_STATE(285)] = 10962, + [SMALL_STATE(286)] = 10977, + [SMALL_STATE(287)] = 10992, + [SMALL_STATE(288)] = 11007, + [SMALL_STATE(289)] = 11022, + [SMALL_STATE(290)] = 11037, + [SMALL_STATE(291)] = 11052, + [SMALL_STATE(292)] = 11067, + [SMALL_STATE(293)] = 11082, + [SMALL_STATE(294)] = 11097, + [SMALL_STATE(295)] = 11112, + [SMALL_STATE(296)] = 11127, + [SMALL_STATE(297)] = 11142, + [SMALL_STATE(298)] = 11157, + [SMALL_STATE(299)] = 11172, + [SMALL_STATE(300)] = 11187, + [SMALL_STATE(301)] = 11202, + [SMALL_STATE(302)] = 11217, + [SMALL_STATE(303)] = 11232, + [SMALL_STATE(304)] = 11247, + [SMALL_STATE(305)] = 11262, + [SMALL_STATE(306)] = 11277, + [SMALL_STATE(307)] = 11292, + [SMALL_STATE(308)] = 11309, + [SMALL_STATE(309)] = 11326, + [SMALL_STATE(310)] = 11341, + [SMALL_STATE(311)] = 11356, + [SMALL_STATE(312)] = 11371, + [SMALL_STATE(313)] = 11388, + [SMALL_STATE(314)] = 11405, + [SMALL_STATE(315)] = 11422, + [SMALL_STATE(316)] = 11437, + [SMALL_STATE(317)] = 11452, + [SMALL_STATE(318)] = 11467, + [SMALL_STATE(319)] = 11482, + [SMALL_STATE(320)] = 11497, + [SMALL_STATE(321)] = 11512, + [SMALL_STATE(322)] = 11529, + [SMALL_STATE(323)] = 11546, + [SMALL_STATE(324)] = 11561, + [SMALL_STATE(325)] = 11576, + [SMALL_STATE(326)] = 11591, + [SMALL_STATE(327)] = 11606, + [SMALL_STATE(328)] = 11621, + [SMALL_STATE(329)] = 11636, + [SMALL_STATE(330)] = 11651, + [SMALL_STATE(331)] = 11666, + [SMALL_STATE(332)] = 11681, + [SMALL_STATE(333)] = 11696, + [SMALL_STATE(334)] = 11711, + [SMALL_STATE(335)] = 11726, + [SMALL_STATE(336)] = 11741, + [SMALL_STATE(337)] = 11756, + [SMALL_STATE(338)] = 11771, + [SMALL_STATE(339)] = 11786, + [SMALL_STATE(340)] = 11801, + [SMALL_STATE(341)] = 11816, + [SMALL_STATE(342)] = 11831, + [SMALL_STATE(343)] = 11846, + [SMALL_STATE(344)] = 11863, + [SMALL_STATE(345)] = 11880, + [SMALL_STATE(346)] = 11897, + [SMALL_STATE(347)] = 11914, + [SMALL_STATE(348)] = 11931, + [SMALL_STATE(349)] = 11946, + [SMALL_STATE(350)] = 11961, + [SMALL_STATE(351)] = 11976, + [SMALL_STATE(352)] = 11991, + [SMALL_STATE(353)] = 12006, + [SMALL_STATE(354)] = 12021, + [SMALL_STATE(355)] = 12036, + [SMALL_STATE(356)] = 12051, + [SMALL_STATE(357)] = 12066, + [SMALL_STATE(358)] = 12081, + [SMALL_STATE(359)] = 12096, + [SMALL_STATE(360)] = 12111, + [SMALL_STATE(361)] = 12126, + [SMALL_STATE(362)] = 12141, + [SMALL_STATE(363)] = 12156, + [SMALL_STATE(364)] = 12171, + [SMALL_STATE(365)] = 12186, + [SMALL_STATE(366)] = 12201, + [SMALL_STATE(367)] = 12216, + [SMALL_STATE(368)] = 12231, + [SMALL_STATE(369)] = 12246, + [SMALL_STATE(370)] = 12261, + [SMALL_STATE(371)] = 12276, + [SMALL_STATE(372)] = 12291, + [SMALL_STATE(373)] = 12306, + [SMALL_STATE(374)] = 12321, + [SMALL_STATE(375)] = 12338, + [SMALL_STATE(376)] = 12355, + [SMALL_STATE(377)] = 12372, + [SMALL_STATE(378)] = 12387, + [SMALL_STATE(379)] = 12402, + [SMALL_STATE(380)] = 12419, + [SMALL_STATE(381)] = 12436, + [SMALL_STATE(382)] = 12451, + [SMALL_STATE(383)] = 12468, + [SMALL_STATE(384)] = 12485, + [SMALL_STATE(385)] = 12502, + [SMALL_STATE(386)] = 12519, + [SMALL_STATE(387)] = 12536, + [SMALL_STATE(388)] = 12553, + [SMALL_STATE(389)] = 12570, + [SMALL_STATE(390)] = 12584, + [SMALL_STATE(391)] = 12592, + [SMALL_STATE(392)] = 12600, + [SMALL_STATE(393)] = 12608, + [SMALL_STATE(394)] = 12616, + [SMALL_STATE(395)] = 12624, + [SMALL_STATE(396)] = 12632, + [SMALL_STATE(397)] = 12640, + [SMALL_STATE(398)] = 12648, + [SMALL_STATE(399)] = 12656, + [SMALL_STATE(400)] = 12664, + [SMALL_STATE(401)] = 12672, + [SMALL_STATE(402)] = 12680, + [SMALL_STATE(403)] = 12688, + [SMALL_STATE(404)] = 12696, + [SMALL_STATE(405)] = 12704, + [SMALL_STATE(406)] = 12712, + [SMALL_STATE(407)] = 12720, + [SMALL_STATE(408)] = 12728, + [SMALL_STATE(409)] = 12736, + [SMALL_STATE(410)] = 12744, + [SMALL_STATE(411)] = 12752, + [SMALL_STATE(412)] = 12760, + [SMALL_STATE(413)] = 12768, + [SMALL_STATE(414)] = 12776, + [SMALL_STATE(415)] = 12784, + [SMALL_STATE(416)] = 12792, + [SMALL_STATE(417)] = 12800, + [SMALL_STATE(418)] = 12808, + [SMALL_STATE(419)] = 12816, + [SMALL_STATE(420)] = 12824, + [SMALL_STATE(421)] = 12832, + [SMALL_STATE(422)] = 12840, + [SMALL_STATE(423)] = 12848, + [SMALL_STATE(424)] = 12856, + [SMALL_STATE(425)] = 12864, + [SMALL_STATE(426)] = 12872, + [SMALL_STATE(427)] = 12880, + [SMALL_STATE(428)] = 12888, + [SMALL_STATE(429)] = 12896, + [SMALL_STATE(430)] = 12904, + [SMALL_STATE(431)] = 12912, + [SMALL_STATE(432)] = 12920, + [SMALL_STATE(433)] = 12928, + [SMALL_STATE(434)] = 12936, + [SMALL_STATE(435)] = 12944, + [SMALL_STATE(436)] = 12952, + [SMALL_STATE(437)] = 12960, + [SMALL_STATE(438)] = 12968, + [SMALL_STATE(439)] = 12976, + [SMALL_STATE(440)] = 12984, + [SMALL_STATE(441)] = 12992, + [SMALL_STATE(442)] = 13000, + [SMALL_STATE(443)] = 13008, + [SMALL_STATE(444)] = 13016, + [SMALL_STATE(445)] = 13024, + [SMALL_STATE(446)] = 13032, + [SMALL_STATE(447)] = 13040, + [SMALL_STATE(448)] = 13048, + [SMALL_STATE(449)] = 13056, + [SMALL_STATE(450)] = 13064, + [SMALL_STATE(451)] = 13072, + [SMALL_STATE(452)] = 13080, + [SMALL_STATE(453)] = 13088, + [SMALL_STATE(454)] = 13096, + [SMALL_STATE(455)] = 13104, + [SMALL_STATE(456)] = 13112, + [SMALL_STATE(457)] = 13120, + [SMALL_STATE(458)] = 13128, + [SMALL_STATE(459)] = 13136, + [SMALL_STATE(460)] = 13144, + [SMALL_STATE(461)] = 13152, + [SMALL_STATE(462)] = 13160, + [SMALL_STATE(463)] = 13168, + [SMALL_STATE(464)] = 13176, + [SMALL_STATE(465)] = 13184, + [SMALL_STATE(466)] = 13192, + [SMALL_STATE(467)] = 13200, + [SMALL_STATE(468)] = 13208, + [SMALL_STATE(469)] = 13216, + [SMALL_STATE(470)] = 13224, + [SMALL_STATE(471)] = 13232, + [SMALL_STATE(472)] = 13240, + [SMALL_STATE(473)] = 13248, + [SMALL_STATE(474)] = 13256, + [SMALL_STATE(475)] = 13264, + [SMALL_STATE(476)] = 13272, + [SMALL_STATE(477)] = 13280, + [SMALL_STATE(478)] = 13288, + [SMALL_STATE(479)] = 13296, + [SMALL_STATE(480)] = 13304, + [SMALL_STATE(481)] = 13312, + [SMALL_STATE(482)] = 13320, + [SMALL_STATE(483)] = 13328, + [SMALL_STATE(484)] = 13336, + [SMALL_STATE(485)] = 13344, + [SMALL_STATE(486)] = 13352, + [SMALL_STATE(487)] = 13360, + [SMALL_STATE(488)] = 13368, + [SMALL_STATE(489)] = 13376, + [SMALL_STATE(490)] = 13384, + [SMALL_STATE(491)] = 13392, + [SMALL_STATE(492)] = 13400, + [SMALL_STATE(493)] = 13408, + [SMALL_STATE(494)] = 13416, + [SMALL_STATE(495)] = 13424, + [SMALL_STATE(496)] = 13432, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [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(465), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(30), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(28), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(231), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(430), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(429), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(185), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(25), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(24), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(24), - [80] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), - [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(31), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(30), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(28), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(231), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(430), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(429), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(25), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 1), - [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 1), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 1), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 1), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escape_encoded, 1), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escape_encoded, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(76), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(74), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(223), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(521), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(522), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(184), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(75), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(69), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(73), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(76), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(74), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(223), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(521), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(522), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(75), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(188), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(201), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(229), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(517), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(518), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(182), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(200), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(187), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(198), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(465), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(451), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(450), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(464), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(459), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(458), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(457), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(468), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(469), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 1), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_message_command_repeat1, 1), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(188), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(201), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(229), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(517), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(518), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(200), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(208), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(203), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(226), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(519), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(520), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(186), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(211), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(204), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(465), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(464), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(459), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(458), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(497), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(498), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(456), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(455), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(478), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(488), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(489), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(507), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(508), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(208), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(203), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(226), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(519), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(520), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(211), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 1), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_foreach_command_repeat1, 1), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(278), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(214), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(217), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(525), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(526), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(264), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(261), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(262), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(220), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(523), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(524), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(236), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_element, 1), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 1), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 1), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 1), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 1), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(419), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(418), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(417), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_invocation, 1), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 3), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 4), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_invocation, 1), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 4), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 3), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 1), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1018] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(25), + [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(203), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(427), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(426), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(179), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(23), + [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(4), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(4), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(31), + [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [86] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(25), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(203), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(427), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(426), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(22), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), + [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(67), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(211), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(491), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(492), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(178), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(45), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(42), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(69), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(67), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(211), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(491), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(492), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(46), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(181), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(230), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(487), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(488), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(177), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(72), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(48), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(182), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(392), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(465), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(464), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(486), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(485), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(484), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(476), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(438), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(439), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(181), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(230), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(487), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(488), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(71), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(193), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(206), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(489), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(490), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(180), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(174), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(196), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(486), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(485), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(476), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(448), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(449), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(458), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(467), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(468), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(475), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(474), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(477), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(478), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(193), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(206), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(489), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(490), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(175), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(259), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(216), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(493), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(494), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(185), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(253), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(232), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(495), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(496), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(188), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_element, 1), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 4), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 3), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(389), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(246), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 3), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 4), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1055] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), }; #ifdef __cplusplus diff --git a/src/scanner.cc b/src/scanner.cc index 7df47b6..2fe6d24 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -1,18 +1,16 @@ #include -#include #include namespace { -enum TokenType { BRACKET_ARGUMENT, BRACKET_COMMENT }; +enum TokenType { BRACKET_ARGUMENT, BRACKET_COMMENT, LINE_COMMENT }; void skip(TSLexer *lexer) { lexer->advance(lexer, true); } void advance(TSLexer *lexer) { lexer->advance(lexer, false); } -bool scan_bracket_argument(TSLexer *lexer, bool skip_wspace) { - if (skip_wspace) { - while (std::iswspace(lexer->lookahead)) { - skip(lexer); - } +void skip_wspace(TSLexer *lexer) { + while (std::iswspace(lexer->lookahead)) { + skip(lexer); } - +} +bool is_bracket_argument(TSLexer *lexer) { if (lexer->lookahead != '[') { return false; } @@ -41,29 +39,35 @@ bool scan_bracket_argument(TSLexer *lexer, bool skip_wspace) { if (lexer->lookahead == ']' && close_level == open_level) { advance(lexer); - lexer->result_symbol = BRACKET_ARGUMENT; return true; } } } return false; } -bool scan_bracket_comment(TSLexer *lexer) { - if (lexer->lookahead != '#') { - return false; +bool scan(void *payload, TSLexer *lexer, bool const *valid_symbols) { + skip_wspace(lexer); + + if (lexer->lookahead != '#' && valid_symbols[BRACKET_ARGUMENT]) { + if (is_bracket_argument(lexer)) { + lexer->result_symbol = BRACKET_ARGUMENT; + return true; + } } - advance(lexer); - if (scan_bracket_argument(lexer, false)) { - lexer->result_symbol = BRACKET_COMMENT; - return true; + if (lexer->lookahead == '#' && + (valid_symbols[BRACKET_COMMENT] || valid_symbols[LINE_COMMENT])) { + advance(lexer); + if (is_bracket_argument(lexer)) { + lexer->result_symbol = BRACKET_COMMENT; + return true; + } else { + while (lexer->lookahead != '\n' && lexer->lookahead != '\0') { + advance(lexer); + } + lexer->result_symbol = LINE_COMMENT; + return true; + } } - return false; -} -bool scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[BRACKET_ARGUMENT]) - return scan_bracket_argument(lexer, true); - if (valid_symbols[BRACKET_ARGUMENT]) - return scan_bracket_comment(lexer); return false; } @@ -77,10 +81,10 @@ unsigned tree_sitter_cmake_external_scanner_serialize(void *payload, return 0; } void tree_sitter_cmake_external_scanner_deserialize(void *payload, - const char *buffer, + char const *buffer, unsigned length) {} bool tree_sitter_cmake_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { + bool const *valid_symbols) { return scan(payload, lexer, valid_symbols); } }